Files
navigation/settings.gradle.kts
2025-11-27 10:34:18 +01:00

37 lines
688 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()
}
}
rootProject.name = "Navigation"
include(
":",
":app",
":common",
":common:data",
":common:car",
)
include(":common:automotive")
include(":app:automotive")
include(":automotive")