Files
OcheCompanion/settings.gradle.kts
Alexander Doerflinger a4a42fc73f Initial Commit
2026-01-28 12:33:38 +01:00

24 lines
538 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 = "Oche Companion"
include(":app")