diff options
author | Przemyslaw <prymula76@outlook.com> | 2024-04-18 18:46:24 +0200 |
---|---|---|
committer | Przemyslaw <prymula76@outlook.com> | 2024-04-18 18:46:24 +0200 |
commit | 11818054364b6248be8ff092d2914598f1081dc5 (patch) | |
tree | 361ab82dcba66f79a7cd4f911dc0873a0bf0632a /android/SameGame/settings.gradle.kts |
Init
Diffstat (limited to 'android/SameGame/settings.gradle.kts')
-rw-r--r-- | android/SameGame/settings.gradle.kts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/android/SameGame/settings.gradle.kts b/android/SameGame/settings.gradle.kts new file mode 100644 index 0000000..f4fe2e4 --- /dev/null +++ b/android/SameGame/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 = "Same Game" +include(":app") +
\ No newline at end of file |