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

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"))
}