18 lines
650 B
Kotlin
18 lines
650 B
Kotlin
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
maven("https://maven.aliyun.com/nexus/content/groups/public/")
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
maven("https://api.xposed.info/")
|
|
}
|
|
}
|
|
|
|
include(":app", ":stub", ":ksp", ":mmkv")
|
|
val compilerLibsDir: File = File(settingsDir, "libs")
|
|
project(":stub").projectDir = File(compilerLibsDir, "stub")
|
|
project(":ksp").projectDir = File(compilerLibsDir, "ksp")
|
|
project(":mmkv").projectDir = File(compilerLibsDir, "mmkv" + File.separator + "Android")
|
|
rootProject.name = "QAuxiliary"
|