Files
Magisk/app/stub-res/build.gradle.kts
T
topjohnwu 240b6db1cc Move stub resources into its own module
Stop relying on internal AGP intermediate paths in the build directory.
Use standard AGP classes to achieve the same result
2026-04-08 05:29:57 +00:00

17 lines
238 B
Kotlin

plugins {
alias(libs.plugins.android.application)
}
setupCommon()
android {
namespace = "com.topjohnwu.magisk"
enableKotlin = false
buildTypes {
release {
isShrinkResources = false
}
}
}