Files
aiagent/androidExampleDemo/settings.gradle~7c5f94d47066e9f9fb4cd23e74fe34d53d326684

24 lines
526 B
Plaintext
Raw Normal View History

2026-01-20 11:03:55 +08:00
pluginManagement {
repositories {
2026-01-20 14:25:07 +08:00
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
2026-01-20 11:03:55 +08:00
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
2026-01-20 14:25:07 +08:00
rootProject.name = "obd"
include ':app'