mirror of
https://github.com/iruletheworldmo/strawberry.git
synced 2024-08-13 23:12:55 -05:00
24 lines
536 B
Text
24 lines
536 B
Text
|
pluginManagement {
|
||
|
repositories {
|
||
|
google {
|
||
|
content {
|
||
|
includeGroupByRegex("com\\.android.*")
|
||
|
includeGroupByRegex("com\\.google.*")
|
||
|
includeGroupByRegex("androidx.*")
|
||
|
}
|
||
|
}
|
||
|
mavenCentral()
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
}
|
||
|
dependencyResolutionManagement {
|
||
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
rootProject.name = "STRAW BERRY"
|
||
|
include(":app")
|
||
|
|