2024-02-27 14:58:18 -06:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-18 18:10:58 -05:00
|
|
|
rootProject.name = "CriminalIntentChapter7"
|
2024-02-27 14:58:18 -06:00
|
|
|
include(":app")
|
2024-03-18 18:10:58 -05:00
|
|
|
|