2023-02-05 02:58:53 +08:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2023-11-23 16:41:46 +08:00
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex(".*google.*")
|
|
|
|
includeGroupByRegex(".*android.*")
|
|
|
|
}
|
|
|
|
}
|
2023-02-05 02:58:53 +08:00
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
2023-11-23 16:41:46 +08:00
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex(".*google.*")
|
|
|
|
includeGroupByRegex(".*android.*")
|
|
|
|
}
|
|
|
|
}
|
2023-02-05 02:58:53 +08:00
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
|
|
|
|
|
2017-01-02 20:37:38 -05:00
|
|
|
include ':app'
|