Files
YukiHookAPI/yukihookapi-ksp-xposed/build.gradle
2022-02-05 19:54:00 +08:00

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'
}