2021-02-07 20:03:55 +01:00
|
|
|
import org.jetbrains.compose.compose
|
|
|
|
|
2021-01-26 13:54:28 +01:00
|
|
|
plugins {
|
2021-03-06 18:33:05 +01:00
|
|
|
id("multiplatform-setup")
|
2021-01-26 13:54:28 +01:00
|
|
|
id("android-setup")
|
2021-02-08 21:05:40 +01:00
|
|
|
id("kotlin-parcelize")
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
2021-01-26 20:58:11 +01:00
|
|
|
commonMain {
|
2021-01-26 13:54:28 +01:00
|
|
|
dependencies {
|
2021-01-31 12:33:41 +01:00
|
|
|
implementation(project(":common:dependency-injection"))
|
|
|
|
implementation(project(":common:data-models"))
|
|
|
|
implementation(project(":common:database"))
|
2021-02-01 17:33:30 +01:00
|
|
|
implementation(SqlDelight.coroutineExtensions)
|
|
|
|
implementation(MVIKotlin.coroutines)
|
2021-01-31 12:33:41 +01:00
|
|
|
implementation(MVIKotlin.mvikotlin)
|
|
|
|
implementation(Decompose.decompose)
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-14 00:46:59 +01:00
|
|
|
}
|