maposition/settings.gradle.kts
Cosano-star 29bbae5823 Renommage du projet MiniApp → MaPosition
- applicationId et namespace : com.example.miniapp → com.example.maposition
- Nom affiché, thème, rootProject.name et SharedPreferences alignés
- Packages Kotlin déplacés (main, test, androidTest)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 13:47:37 +02:00

23 lines
534 B
Text

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 = "MaPosition"
include(":app")