mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-04-28 12:03:09 -07:00
Stop relying on internal AGP intermediate paths in the build directory. Use standard AGP classes to achieve the same result
21 lines
460 B
Kotlin
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")
|