kiwix-android/kiwixlib/build.gradle
2019-02-06 17:29:02 +00:00

25 lines
578 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation("androidx.test.espresso:espresso-core:$espressoVersion")
testImplementation "junit:junit:$jUnitVersion"
}