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