mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-02 00:56:50 +01:00
539d20a6f8
* 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
21 lines
543 B
Plaintext
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)
|
|
}
|
|
}
|
|
}
|
|
}
|