libsu/nio/build.gradle.kts
2023-05-26 00:31:34 -07:00

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