* update l10n * move color components to common module * create new UI components * update persistence layer - add color property - add missing getter - fix test accordingly * add tag list screen * add tag detail screen * update build scripts and DI configuration * add possibility to open tag management from profile side menu * add possibility to edit tag membership in user detail
29 lines
989 B
Plaintext
29 lines
989 B
Plaintext
plugins {
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
id("com.livefast.eattrash.composeMultiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(libs.compose.colorpicker)
|
|
implementation(libs.voyager.navigator)
|
|
implementation(libs.voyager.bottomsheet)
|
|
|
|
implementation(projects.core.appearance)
|
|
implementation(projects.core.commonui.components)
|
|
implementation(projects.core.commonui.lemmyui)
|
|
implementation(projects.core.l10n)
|
|
implementation(projects.core.navigation)
|
|
implementation(projects.core.notifications)
|
|
implementation(projects.core.persistence)
|
|
implementation(projects.core.resources)
|
|
implementation(projects.core.utils)
|
|
|
|
implementation(projects.domain.lemmy.data)
|
|
}
|
|
}
|
|
}
|
|
}
|