2024-01-08 20:45:21 +01:00
|
|
|
plugins {
|
2024-12-08 10:25:00 +01:00
|
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
|
|
id("com.livefast.eattrash.koinWithKsp")
|
|
|
|
id("com.livefast.eattrash.composeMultiplatform")
|
|
|
|
id("com.livefast.eattrash.androidTest")
|
2024-01-08 20:45:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
2024-09-05 16:17:57 -04:00
|
|
|
implementation(libs.compose.colorpicker)
|
2024-01-08 20:45:21 +01:00
|
|
|
implementation(libs.voyager.navigator)
|
|
|
|
|
|
|
|
implementation(projects.core.utils)
|
|
|
|
implementation(projects.core.appearance)
|
|
|
|
implementation(projects.core.commonui.components)
|
2024-02-13 22:37:13 +01:00
|
|
|
implementation(projects.core.l10n)
|
2024-01-08 20:45:21 +01:00
|
|
|
implementation(projects.core.navigation)
|
|
|
|
implementation(projects.core.persistence)
|
|
|
|
implementation(projects.core.notifications)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|