ASDV-Android/Assignments/CriminalIntent10/settings.gradle.kts

24 lines
539 B
Plaintext
Raw Permalink Normal View History

2024-02-27 14:58:18 -06:00
pluginManagement {
repositories {
2024-03-18 18:10:58 -05:00
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
2024-02-27 14:58:18 -06:00
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
2024-03-18 18:10:58 -05:00
rootProject.name = "CriminalIntent3"
2024-02-27 14:58:18 -06:00
include(":app")