Files
KahootQuiz/app/build.gradle.kts
Adrian Kuta 21ba338d38 refactor: Relocate data module and add README
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.
2025-09-04 23:02:45 +02:00

37 lines
968 B
Plaintext

plugins {
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.kahootquiz.android.application.compose)
alias(libs.plugins.kahootquiz.android.application.hilt)
}
android {
namespace = "dev.adriankuta.kahootquiz"
defaultConfig {
applicationId = "dev.adriankuta.kahootquiz"
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
)
}
}
}
dependencies {
implementation(projects.core.designsystem)
implementation(projects.domain)
implementation(projects.data)
implementation(projects.ui.quiz)
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.hilt.navigation.compose)
}