mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-07-28 22:51:13 -07:00
Using buildSrc comes with too many caveats, switch over to a composite build-logic solves a lot of buildSrc's issue.
21 lines
447 B
Kotlin
21 lines
447 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", ":test")
|