mirror of
https://github.com/topjohnwu/libsu.git
synced 2024-11-23 12:09:42 +00:00
21 lines
378 B
Plaintext
21 lines
378 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 {
|
|
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
|
|
api("androidx.annotation:annotation:1.3.0")
|
|
}
|