31 lines
613 B
Kotlin
31 lines
613 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
maven("https://api.xposed.info/")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "QAuxiliary"
|
|
include(
|
|
":app",
|
|
":libs:stub",
|
|
":libs:ksp",
|
|
":libs:mmkv"
|
|
)
|
|
|
|
buildCache { local { removeUnusedEntriesAfterDays = 1 } }
|