2023-12-27 18:50:58 +01:00
|
|
|
plugins {
|
2024-12-08 10:25:00 +01:00
|
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
|
|
id("com.livefast.eattrash.composeMultiplatform")
|
|
|
|
id("com.livefast.eattrash.androidTest")
|
2023-12-27 18:50:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
2024-12-22 15:12:42 +01:00
|
|
|
implementation(libs.kodein)
|
2023-12-27 18:50:58 +01:00
|
|
|
implementation(libs.voyager.navigator)
|
|
|
|
|
|
|
|
implementation(projects.core.appearance)
|
2024-02-13 22:37:13 +01:00
|
|
|
implementation(projects.core.l10n)
|
2023-12-27 18:50:58 +01:00
|
|
|
implementation(projects.core.utils)
|
|
|
|
}
|
|
|
|
}
|
2024-12-06 23:45:57 +01:00
|
|
|
}
|
|
|
|
}
|