Initial commit

This commit is contained in:
RyanairRecruitment
2025-06-12 10:14:10 +02:00
committed by GitHub
commit 1656e706a0
48 changed files with 1442 additions and 0 deletions

17
settings.gradle.kts Normal file
View File

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