2024-11-26 22:47:37 +08:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex("com\\.android.*")
|
|
|
|
includeGroupByRegex("com\\.google.*")
|
|
|
|
includeGroupByRegex("androidx.*")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
2024-11-27 17:49:47 +08:00
|
|
|
maven { url = uri("https://jitpack.io") }
|
2024-11-26 22:47:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2024-11-27 17:49:47 +08:00
|
|
|
maven { url = uri("https://jitpack.io") }
|
2024-11-26 22:47:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "bookkeeping"
|
|
|
|
include(":app")
|