Files
fast-messenger/core/data/build.gradle.kts
T
melod1n 7ab333280c Refactor: Clean up unused code and improve error handling
This commit performs a general cleanup of the codebase by removing unused dependencies, comments, and functions. It also improves error handling in the build logic.

Key changes:
- Removed a TODO and an inappropriate function `dickPizda` from `Extensions.kt`.
- Removed stale TODO comments from `core/data/build.gradle.kts` and `core/domain/build.gradle.kts`.
- Replaced a `TODO` call with a proper `IllegalArgumentException` in `KotlinAndroid.kt` for better error reporting when encountering unsupported project extensions.
2025-12-27 20:56:02 +03:00

21 lines
426 B
Kotlin

plugins {
alias(libs.plugins.fast.android.library)
// alias(libs.plugins.fast.koin)
}
android {
namespace = "dev.meloda.fast.data"
}
dependencies {
api(projects.core.common)
api(projects.core.datastore)
api(projects.core.model)
api(projects.core.network)
api(projects.core.database)
implementation(libs.retrofit)
implementation(libs.eithernet)
implementation(libs.koin.android)
}