mirror of https://github.com/topjohnwu/magisk
12 lines
328 B
Kotlin
12 lines
328 B
Kotlin
@Suppress("UnstableApiUsage")
|
|
dependencyResolutionManagement {
|
|
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
rootProject.name = "Magisk"
|
|
include(":app:apk", ":app:core", ":app:shared", ":app:stub", ":native")
|