Project initialization

This commit is contained in:
Piotr Dec 2023-06-22 21:25:42 +02:00
commit 97ee629ef3
38 changed files with 698 additions and 0 deletions

16
settings.gradle Normal file
View file

@ -0,0 +1,16 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Garmin"
include ':app'