initial commit

This commit is contained in:
2024-03-07 14:06:48 +01:00
commit 4eb15845b3
54 changed files with 1247 additions and 0 deletions

17
settings.gradle.kts Normal file
View File

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