Raccoon/domain/identity/build.gradle.kts
akesi seli bddd9cbf00
feat(deep-link): add support for opening posts and comments (#152)
* 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
2024-12-10 00:11:02 +01:00

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)
}
}
}
}