Files
navigation/settings.gradle.kts
Dimitris e274011080 Diverse
2026-01-10 12:48:41 +01:00

38 lines
701 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 {
url = uri("https://jitpack.io")
}
}
}
rootProject.name = "Navigation"
include(
":",
":app",
":common",
":common:data",
":common:car",
)
include(":automotive")