mirror of
https://github.com/googlemaps/android-samples.git
synced 2025-12-08 18:02:20 +00:00
21 lines
559 B
Groovy
21 lines
559 B
Groovy
// [START maps_android_settings_plugin_management]
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
// [END maps_android_settings_plugin_management]
|
|
// [START maps_android_settings_dependency_resolution_management]
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
// [END maps_android_settings_dependency_resolution_management]
|
|
include ':app'
|
|
rootProject.name = "Snippets App"
|