chore: bootstrap root Gradle with version catalog

This commit is contained in:
nk
2026-06-01 11:54:39 +03:00
parent 4700335f11
commit 082e895f6a
4 changed files with 102 additions and 0 deletions

16
settings.gradle.kts Normal file
View File

@@ -0,0 +1,16 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "radiOLA"
include(":app")