Initial commit

This commit is contained in:
Thomas Andres Gomez 2025-10-21 11:26:53 +02:00
commit f663b00e3e
48 changed files with 1960 additions and 0 deletions

31
settings.gradle.kts Normal file
View file

@ -0,0 +1,31 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
maven {
url = uri("https://androidx.dev/snapshots/builds/13617490/artifacts/repository")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = uri("https://androidx.dev/snapshots/builds/13617490/artifacts/repository")
}
}
}
rootProject.name = "Chocolat"
include(":app")