53 lines
1.3 KiB
Groovy
53 lines
1.3 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'de.mobilej.unmock'
|
|
|
|
android {
|
|
compileSdkVersion target_sdk_version
|
|
|
|
defaultConfig {
|
|
targetSdkVersion target_sdk_version
|
|
minSdkVersion min_sdk_version
|
|
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
unMock {
|
|
keepStartingWith "android.util."
|
|
keepStartingWith "com.android.internal.util."
|
|
|
|
keep "android.graphics.Bitmap"
|
|
keep "android.graphics.BitmapFactory"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'commons-io:commons-io:2.6'
|
|
implementation 'androidx.annotation:annotation:1.1.0'
|
|
implementation "androidx.core:core-ktx:1.1.0"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
unmock 'org.robolectric:android-all:5.0.0_r2-robolectric-0'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|