Files
Archive/sing-box/clients/android/third_party/libxposed-api/build.gradle.kts
T
2026-02-21 19:48:39 +01: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.9.1")
}