Initial commit

This commit is contained in:
2025-06-12 23:20:21 +02:00
parent 1656e706a0
commit 714cdb6795
122 changed files with 3335 additions and 916 deletions

View File

@ -1,6 +1,5 @@
rootProject.name = "AndroidChallenge"
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
@ -8,10 +7,29 @@ pluginManagement {
}
}
dependencyResolutionManagement {
// If the issue below gets fixed then the repositories blocks can come out the project modules and this can go back
// to being RepositoriesMode.FAIL_ON_PROJECT_REPOS
// https://github.com/GoogleCloudPlatform/artifact-registry-maven-tools/issues/71
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
gradle.startParameter.excludedTaskNames.addAll(listOf(":build-logic:convention:testClasses"))
rootProject.name = "Flights"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":core:util")
include(":domain:types")
include(":model:data:api")
include(":model:data:room")
include(":model:data:simple")
include(":model:datasource:characters")
include(":model:repository")
include(":ui:designsystem")
include(":ui:home")
include(":ui:sharedui")