mirror of
https://github.com/oxyroid/M3UAndroid.git
synced 2025-07-03 20:13:36 +08:00
20 lines
441 B
Plaintext
20 lines
441 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
alias(libs.plugins.com.google.devtools.ksp)
|
|
}
|
|
|
|
ksp {
|
|
arg("autoserviceKsp.verify", "true")
|
|
arg("autoserviceKsp.verbose", "true")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":lint:annotation"))
|
|
|
|
implementation(libs.symbol.processing.api)
|
|
implementation(libs.kotlinpoet)
|
|
implementation(libs.kotlinpoet.ksp)
|
|
implementation(libs.auto.service.annotations)
|
|
|
|
ksp(libs.auto.service.ksp)
|
|
} |