mirror of
https://github.com/topjohnwu/Magisk
synced 2024-11-11 17:38:25 +01:00
15 lines
283 B
Plaintext
15 lines
283 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
vectorDrawables.useSupportLibrary = true
|
|
consumerProguardFiles("proguard-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
|
|
}
|