Start port
[iotcloud.git] / version2 / src / Control / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4
5     dexOptions {
6         preDexLibraries = false
7     }
8
9
10     compileSdkVersion 23
11     buildToolsVersion "25.0.2"
12
13     defaultConfig {
14         applicationId "com.example.ali.control"
15         minSdkVersion 15
16         targetSdkVersion 23
17         versionCode 1
18         versionName "1.0"
19     }
20     buildTypes {
21         release {
22             minifyEnabled false
23             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
24         }
25     }
26     compileOptions {
27         sourceCompatibility JavaVersion.VERSION_1_8
28         targetCompatibility JavaVersion.VERSION_1_8
29     }
30 }
31
32 dependencies {
33     compile fileTree(include: ['*.jar'], dir: 'libs')
34     testCompile 'junit:junit:4.12'
35     compile 'com.android.support:appcompat-v7:23.3.0'
36     compile 'com.android.support:design:23.3.0'
37 //    compile files('libs/bcpg-jdk15on-1.56.0.0.jar')
38 //    compile files('libs/bcpkix-jdk15on-1.56.0.0.jar')
39 //    compile files('libs/bctls-jdk15on-1.56.0.0.jar')
40 //    compile files('libs/core-1.56.0.0.jar')
41 //    compile files('libs/pg-1.54.0.0.jar')
42 //    compile files('libs/pkix-1.54.0.0.jar')
43 //    compile files('libs/prov-1.56.0.0.jar')
44 }