forked from melod1n/fast-messenger
7ab333280c
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.
23 lines
458 B
Kotlin
23 lines
458 B
Kotlin
plugins {
|
|
alias(libs.plugins.fast.android.library)
|
|
// alias(libs.plugins.fast.android.koin)
|
|
}
|
|
|
|
android {
|
|
namespace = "dev.meloda.fast.domain"
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.core.common)
|
|
api(projects.core.data)
|
|
api(projects.core.model)
|
|
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
implementation(libs.koin.core)
|
|
implementation(libs.eithernet)
|
|
|
|
implementation(libs.bundles.nanokt)
|
|
|
|
implementation(libs.compose.ui)
|
|
}
|