initial commit

This commit is contained in:
Sean 2024-12-19 07:14:52 -05:00
parent 9060d534d7
commit 808cf4cd6d
37 changed files with 933 additions and 0 deletions

23
settings.gradle.kts Normal file
View file

@ -0,0 +1,23 @@
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 = "Mealie URL Share"
include(":app")