Move all gradle files into folder app

Decouple java and native projects
This commit is contained in:
topjohnwu
2025-05-13 16:25:01 -07:00
committed by John Wu
parent 5dd7a7d804
commit 5a762f0a8e
24 changed files with 54 additions and 52 deletions

11
app/settings.gradle.kts Normal file
View File

@@ -0,0 +1,11 @@
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}
rootProject.name = "Magisk"
include(":apk", ":core", ":shared", ":stub", ":test")