|
a |
|
b/Malaria-Detection-App/app/build.gradle |
|
|
1 |
apply plugin: 'com.android.application' |
|
|
2 |
|
|
|
3 |
apply plugin: 'kotlin-android' |
|
|
4 |
|
|
|
5 |
apply plugin: 'kotlin-android-extensions' |
|
|
6 |
|
|
|
7 |
android { |
|
|
8 |
compileSdkVersion 29 |
|
|
9 |
buildToolsVersion "29.0.2" |
|
|
10 |
defaultConfig { |
|
|
11 |
applicationId "lab.tnr.malariadetection" |
|
|
12 |
minSdkVersion 19 |
|
|
13 |
targetSdkVersion 29 |
|
|
14 |
versionCode 1 |
|
|
15 |
versionName "1.0.3" |
|
|
16 |
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
|
|
17 |
} |
|
|
18 |
buildTypes { |
|
|
19 |
release { |
|
|
20 |
minifyEnabled false |
|
|
21 |
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
|
|
22 |
} |
|
|
23 |
} |
|
|
24 |
aaptOptions { |
|
|
25 |
noCompress "tflite" |
|
|
26 |
noCompress "lite" |
|
|
27 |
} |
|
|
28 |
} |
|
|
29 |
|
|
|
30 |
dependencies { |
|
|
31 |
implementation fileTree(dir: 'libs', include: ['*.jar']) |
|
|
32 |
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" |
|
|
33 |
implementation 'androidx.appcompat:appcompat:1.0.2' |
|
|
34 |
implementation 'androidx.core:core-ktx:1.0.2' |
|
|
35 |
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' |
|
|
36 |
implementation "org.jetbrains.anko:anko-commons:0.10.0" |
|
|
37 |
implementation 'org.tensorflow:tensorflow-lite:0.0.0-nightly' |
|
|
38 |
|
|
|
39 |
implementation 'com.intuit.sdp:sdp-android:1.0.6' |
|
|
40 |
implementation 'com.intuit.ssp:ssp-android:1.0.6' |
|
|
41 |
|
|
|
42 |
testImplementation 'junit:junit:4.12' |
|
|
43 |
androidTestImplementation 'androidx.test.ext:junit:1.1.0' |
|
|
44 |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' |
|
|
45 |
} |