27 lines
754 B
Kotlin
27 lines
754 B
Kotlin
//pluginManagement {
|
|
// repositories {
|
|
// google {
|
|
// content {
|
|
// includeGroupByRegex("com\\.android.*")
|
|
// includeGroupByRegex("com\\.google.*")
|
|
// includeGroupByRegex("androidx.*")
|
|
// }
|
|
// }
|
|
// mavenCentral()
|
|
// gradlePluginPortal()
|
|
// maven { url = uri("https://jitpack.io") }
|
|
// }
|
|
//}
|
|
//dependencyResolutionManagement {
|
|
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
// repositories {
|
|
// google()
|
|
// mavenCentral()
|
|
// maven { url = uri("https://maven.aliyun.com/repository/public") }
|
|
// maven { url = uri("https://jitpack.io") }
|
|
// }
|
|
//}
|
|
|
|
rootProject.name = "DishMatch"
|
|
include(":app")
|
|
|