mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-09-04 09:45:19 +08:00
22 lines
700 B
Groovy
22 lines
700 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
id 'com.google.devtools.ksp' version '1.6.10-1.0.2'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlin { sourceSets.main { kotlin.srcDir("src/api/kotlin") } }
|
|
|
|
dependencies {
|
|
// Used 82 API Version
|
|
compileOnly 'de.robv.android.xposed:api:82'
|
|
compileOnly 'androidx.annotation:annotation:1.3.0'
|
|
implementation project(':yukihookapi')
|
|
implementation 'com.google.auto.service:auto-service-annotations:1.0.1'
|
|
compileOnly 'com.google.devtools.ksp:symbol-processing-api:1.6.10-1.0.2'
|
|
ksp 'dev.zacsweers.autoservice:auto-service-ksp:1.0.0'
|
|
} |