首次提交

This commit is contained in:
DelLevin-Home
2026-08-16 13:44:35 +08:00
commit a9085ad83f
322 changed files with 36601 additions and 0 deletions

33
settings.gradle.kts Normal file
View File

@@ -0,0 +1,33 @@
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")
}