SpotiFlyer/common/list/build.gradle.kts

23 lines
683 B
Plaintext
Raw Normal View History

2021-01-26 13:54:28 +01:00
plugins {
id("multiplatform-compose-setup")
id("android-setup")
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)
implementation(Decompose.extensionsCompose)
2021-01-26 13:54:28 +01:00
}
}
}
2021-02-14 00:46:59 +01:00
}