libsu/nio/build.gradle.kts
2023-09-03 23:03:12 -07:00

21 lines
359 B
Plaintext

plugins {
id("com.android.library")
}
group="com.github.topjohnwu.libsu"
android {
namespace = "com.topjohnwu.superuser.nio"
defaultConfig {
minSdk = 21
}
buildFeatures {
aidl = true
}
}
dependencies {
compileOnly("androidx.annotation:annotation:1.6.0")
javadocDeps("androidx.annotation:annotation:1.6.0")
}