45ee0acea5
* extract Message and Convo mappers to core/domain module * improve reply container text
24 lines
507 B
Kotlin
24 lines
507 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)
|
|
|
|
// TODO: 11/08/2024, Danil Nikolaev: remove?
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
implementation(libs.koin.core)
|
|
implementation(libs.eithernet)
|
|
|
|
implementation(libs.bundles.nanokt)
|
|
|
|
implementation(libs.compose.ui)
|
|
}
|