mirror of
https://github.com/topjohnwu/libsu.git
synced 2024-11-26 21:40:42 +00:00
21 lines
359 B
Plaintext
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")
|
|
}
|