mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-16 06:12:18 +08:00
899803739b
* Inline version strings * Optimize gradle * Remove kotlin-stdlib-jdk7 * Add jvmargs in gradle.properties * Revert "Inline version strings" This reverts commit ad2ab2bb * Revert asserts
31 lines
797 B
Plaintext
31 lines
797 B
Plaintext
plugins {
|
|
kotlin("android")
|
|
kotlin("kapt")
|
|
id("kotlinx-serialization")
|
|
id("com.android.library")
|
|
id("com.google.devtools.ksp")
|
|
}
|
|
|
|
dependencies {
|
|
ksp(deps.kaidl.compiler)
|
|
kapt(deps.androidx.room.compiler)
|
|
|
|
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)
|
|
}
|
|
|
|
afterEvaluate {
|
|
android {
|
|
libraryVariants.forEach {
|
|
sourceSets[it.name].java.srcDir(buildDir.resolve("generated/ksp/${it.name}/kotlin"))
|
|
}
|
|
}
|
|
} |