blob: e58a4fac477425652d9b699ae84d791776029302 [file] [log] [blame]
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 30
defaultConfig {
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
}
}
dependencies {
implementation project(":util-lib")
implementation project(":javalib")
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:5.12.0'
testImplementation 'org.jdeferred:jdeferred-android-aar:1.2.3'
testImplementation 'commons-logging:commons-logging:1.1.1'
}