mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-07-03 14:08:39 +02:00
d5476e1321
Using buildSrc comes with too many caveats, switch over to a composite build-logic solves a lot of buildSrc's issue.
11 lines
144 B
Kotlin
11 lines
144 B
Kotlin
plugins {
|
|
alias(libs.plugins.android.library)
|
|
}
|
|
|
|
setupCommon()
|
|
|
|
android {
|
|
namespace = "com.topjohnwu.shared"
|
|
enableKotlin = false
|
|
}
|