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" | |
} |