blob: 3e2e2bcffc6c2b71007bc80bfcf82162a8e5fb05 [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"
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
}
}
dependencies {
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testImplementation "junit:junit:4.12"
}