Files
SafeRoute3/settings.gradle.kts
T
2026-06-17 17:25:57 +03:00

26 lines
685 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
// ВАЖНО: Меняем режим, чтобы разрешить добавление репозиториев
// Временно меняем с FAIL_ON_PROJECT_REPOS на PREFER_SETTINGS
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
// Добавляем репозиторий Яндекс.Карт
maven {
url = uri("https://maven.datastax.com")
}
}
}
rootProject.name = "SafeRoute"
include(":app")