2024-12-21 12:56:41 -07: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-12-29 14:53:12 +00:00
|
|
|
rootProject.name = "Example Room Database (SDK 21, Empty Activity)"
|
2024-12-21 12:56:41 -07:00
|
|
|
include(":app")
|
|
|
|
|