2023-07-10 11:25:17 +08:00
|
|
|
plugins {
|
2023-08-31 22:22:03 +08:00
|
|
|
alias(libs.plugins.android.library)
|
2023-07-10 11:25:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "li.songe.gkd"
|
2024-03-25 19:18:22 +08:00
|
|
|
compileSdk = libs.versions.compileSdk.get().toInt()
|
|
|
|
buildToolsVersion = libs.versions.buildToolsVersion.get()
|
2023-07-10 11:25:17 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
2024-03-25 19:18:22 +08:00
|
|
|
minSdk = libs.versions.minSdk.get().toInt()
|
2023-07-10 11:25:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
isMinifyEnabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
|
|
aidl = true
|
|
|
|
buildConfig = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
annotationProcessor(libs.rikka.processor)
|
|
|
|
compileOnly(libs.rikka.annotation)
|
|
|
|
}
|