Files
sing-box-for-android/third_party/libxposed-api/build.gradle.kts
2026-01-10 21:31:04 +08:00

27 lines
460 B
Kotlin

plugins {
id("com.android.library")
}
android {
namespace = "io.github.libxposed.api"
compileSdk = 36
defaultConfig {
minSdk = 21
}
buildFeatures {
androidResources = false
buildConfig = false
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
dependencies {
compileOnly("androidx.annotation:annotation:1.7.1")
}