Raccoon/core/navigation/build.gradle.kts
Dieguitux 539d20a6f8
Fix window insets and bar color (#215)
* remove useless dependency

* create common utility to calculate top bar padding

* solve some deprecation issues in DefaultBarColorProvider

* remove unnecessary background in some placeholders

* remove edge-to-edge from advanced settings (enabled by default)

* simplify custom top bars

* update all usages of material3 Scaffold
2025-01-02 17:33:49 +01:00

26 lines
819 B
Plaintext

plugins {
id("com.livefast.eattrash.kotlinMultiplatform")
id("com.livefast.eattrash.composeMultiplatform")
id("com.livefast.eattrash.androidTest")
alias(libs.plugins.kotlinx.kover)
}
kotlin {
sourceSets {
commonMain.dependencies {
implementation(libs.kodein)
implementation(libs.stately.common)
implementation(libs.voyager.navigator)
implementation(libs.voyager.tab)
implementation(libs.voyager.screenmodel)
implementation(libs.voyager.kodein)
implementation(projects.core.di)
implementation(projects.core.l10n)
implementation(projects.core.persistence)
implementation(projects.core.preferences)
implementation(projects.domain.lemmy.data)
}
}
}