Files
Magisk/app/settings.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

21 lines
460 B
Kotlin

@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
}
}
rootProject.name = "Magisk"
include(":apk", ":apk-ng", ":core", ":shared", ":stub", ":stub-res", ":test")