VerveDo/settings.gradle.kts
2023-12-30 18:43:22 +08:00

17 lines
323 B
Text

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "ToDo"
include(":app")