diff options
| author | LeightonGinty <lxg184@student.bham.ac.uk> | 2024-11-16 12:30:59 +0000 |
|---|---|---|
| committer | LeightonGinty <lxg184@student.bham.ac.uk> | 2024-11-16 12:30:59 +0000 |
| commit | 76d57724d624dbf0f2c81863f7d0b3c6a2bad7d0 (patch) | |
| tree | 038b7f47630e2a48b617a414535dce83ac1a870f /settings.gradle.kts | |
Initial commit
Diffstat (limited to 'settings.gradle.kts')
| -rw-r--r-- | settings.gradle.kts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..2f2a03c --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,24 @@ +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() + } +} + +rootProject.name = "AlcaGotchi" +include(":app") +
\ No newline at end of file |
