Initial commit

This commit is contained in:
Andres Gomez, Thomas (ITDV RL) 2025-09-01 09:56:51 +02:00
commit 2c5d9b6df1
115 changed files with 5026 additions and 0 deletions

29
settings.gradle.kts Normal file
View file

@ -0,0 +1,29 @@
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 = "Headache"
include(":app")