ASDV-Android/Quizzes/ProgrammingExam1/Problem3_CalebFontenot/settings.gradle.kts

25 lines
548 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 = "Problem3_CalebFontenot"
2024-02-27 14:58:18 -06:00
include(":app")
2024-03-18 18:10:58 -05:00