mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
27 lines
460 B
Kotlin
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")
|
|
}
|