mirror of
https://github.com/topjohnwu/libsu.git
synced 2024-11-26 21:40:42 +00:00
18 lines
342 B
Plaintext
18 lines
342 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
}
|
|
|
|
group="com.github.topjohnwu.libsu"
|
|
|
|
android {
|
|
namespace = "com.topjohnwu.superuser"
|
|
defaultConfig {
|
|
consumerProguardFiles("proguard-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("androidx.annotation:annotation:1.6.0")
|
|
javadocDeps("androidx.annotation:annotation:1.6.0")
|
|
}
|