* update post repository (api, impl, test) * update comment repository (api, impl, test) * remove url management from :core:commonui:lemmyui * refactor UrlUtils into UrlDecoder * define URL processors * redefine CustomUriHandler * add getCustomUriHandler util * update DI * update deeplink management
28 lines
954 B
Plaintext
28 lines
954 B
Plaintext
plugins {
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
id("com.livefast.eattrash.koinWithKsp")
|
|
id("com.livefast.eattrash.composeMultiplatform")
|
|
id("com.livefast.eattrash.androidTest")
|
|
alias(libs.plugins.kotlinx.kover)
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(projects.core.api)
|
|
implementation(projects.core.appearance)
|
|
implementation(projects.core.commonui.detailopener.api)
|
|
implementation(projects.core.navigation)
|
|
implementation(projects.core.notifications)
|
|
implementation(projects.core.persistence)
|
|
implementation(projects.core.preferences)
|
|
implementation(projects.core.utils)
|
|
|
|
implementation(projects.domain.lemmy.data)
|
|
implementation(projects.domain.lemmy.repository)
|
|
}
|
|
}
|
|
}
|
|
}
|