ClashMetaForAndroid/service/build.gradle.kts

31 lines
797 B
Plaintext
Raw Normal View History

2021-05-15 00:51:08 +08:00
plugins {
kotlin("android")
kotlin("kapt")
id("kotlinx-serialization")
id("com.android.library")
2021-05-15 00:51:08 +08:00
id("com.google.devtools.ksp")
}
dependencies {
ksp(deps.kaidl.compiler)
kapt(deps.androidx.room.compiler)
2021-05-15 00:51:08 +08:00
implementation(project(":core"))
implementation(project(":common"))
implementation(deps.kotlin.coroutine)
implementation(deps.kotlin.serialization.json)
implementation(deps.androidx.core)
implementation(deps.androidx.room.runtime)
implementation(deps.androidx.room.ktx)
implementation(deps.kaidl.runtime)
implementation(deps.rikkax.multiprocess)
2021-05-25 19:40:44 +08:00
}
afterEvaluate {
android {
libraryVariants.forEach {
sourceSets[it.name].java.srcDir(buildDir.resolve("generated/ksp/${it.name}/kotlin"))
}
}
2021-05-15 00:51:08 +08:00
}