mirror of
https://github.com/topjohnwu/libsu.git
synced 2024-11-26 21:40:42 +00:00
19 lines
307 B
Plaintext
19 lines
307 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
}
|
|
|
|
group="com.github.topjohnwu.libsu"
|
|
|
|
android {
|
|
namespace = "com.topjohnwu.superuser.io"
|
|
defaultConfig {
|
|
minSdk = 21
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("androidx.annotation:annotation:1.6.0")
|
|
api(project(":core"))
|
|
api(project(":nio"))
|
|
}
|