28 lines
503 B
Plaintext
28 lines
503 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = AndroidConfig.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
}
|
|
|
|
namespace = "keiyoushi.core"
|
|
|
|
buildFeatures {
|
|
resValues = false
|
|
shaders = false
|
|
}
|
|
|
|
kotlinOptions {
|
|
freeCompilerArgs += "-opt-in=kotlinx.serialization.ExperimentalSerializationApi"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(versionCatalogs.named("libs").findBundle("common").get())
|
|
}
|