Raccoon/unit/rawcontent/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

21 lines
543 B
Plaintext

plugins {
id("com.livefast.eattrash.kotlinMultiplatform")
id("com.livefast.eattrash.composeMultiplatform")
id("com.livefast.eattrash.androidTest")
}
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(libs.kodein)
implementation(libs.voyager.navigator)
implementation(projects.core.appearance)
implementation(projects.core.l10n)
implementation(projects.core.utils)
}
}
}
}