Files
EdgeX_change/settings.gradle.kts
DelLevin-Home a9085ad83f 首次提交
2026-08-16 13:44:35 +08:00

34 lines
917 B
Kotlin

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://api.xposed.info/")
maven("https://jitpack.io")
}
}
rootProject.name = "EdgeX"
include(":app")
include(":premium-api")
// Premium implementation modules are proprietary and not included in this repo.
// When the directory is present locally, it is included automatically
// so ./gradlew :premium:assembleRelease works without any manual changes.
if (file("premium").exists()) {
include(":premium")
}