mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-07-28 14:47:21 -07:00
Stop relying on internal AGP intermediate paths in the build directory. Use standard AGP classes to achieve the same result
17 lines
238 B
Kotlin
17 lines
238 B
Kotlin
plugins {
|
|
alias(libs.plugins.android.application)
|
|
}
|
|
|
|
setupCommon()
|
|
|
|
android {
|
|
namespace = "com.topjohnwu.magisk"
|
|
enableKotlin = false
|
|
|
|
buildTypes {
|
|
release {
|
|
isShrinkResources = false
|
|
}
|
|
}
|
|
}
|