TipCalculator/settings.gradle

17 lines
286 B
Groovy
Raw Permalink Normal View History

2023-05-24 15:04:32 -07:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Tip Calculator"
include ':app'