blob: 4c9c7c7b5d5af5ae307793d7fc1d1ecd5c869541 [file] [log] [blame]
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.google.mylibrary'
compileSdk 33
defaultConfig {
minSdk 24
targetSdk 33
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {
}