2024-06-03 20:56:01 +00:00
|
|
|
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()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-12 13:05:19 +00:00
|
|
|
rootProject.name = "dermy_app"
|
2024-06-03 20:56:01 +00:00
|
|
|
include(":app")
|
|
|
|
|
|