mirror of
https://github.com/AdrianKuta/KahootQuiz.git
synced 2025-09-14 17:24:21 +02:00
This commit moves the `model:data` module to a top-level `data` module. Additionally, a `README.md` file has been added to the project root, providing an overview of the project, architecture, build instructions, current limitations, and suggested improvements. Key changes: - Renamed Gradle module `model:data` to `data`. - Updated `settings.gradle.kts` to reflect the new module path. - Updated `app/build.gradle.kts` to depend on `projects.data` instead of `projects.model.data`. - All source files, including `QuizRepositoryImpl`, `QuizMapper`, and `RepositoryModule`, were moved from `model/data/src` to `data/src`. - Configuration files (`detekt.yml`, `lint-baseline.xml`, `build.gradle.kts`) were moved from `model/data` to `data`. - Added a new `README.md` file at the project root.
33 lines
823 B
Plaintext
33 lines
823 B
Plaintext
pluginManagement {
|
|
includeBuild("build-logic")
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
gradle.startParameter.excludedTaskNames.addAll(listOf(":build-logic:convention:testClasses"))
|
|
|
|
rootProject.name = "KahootQuiz"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
include(":app")
|
|
include(":core:designsystem")
|
|
include(":core:network")
|
|
include(":data")
|
|
include(":domain")
|
|
include(":ui:quiz")
|