SpotiFlyer/common/compose/build.gradle.kts

27 lines
811 B
Plaintext
Raw Normal View History

2021-02-07 20:03:55 +01:00
import org.jetbrains.compose.compose
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-02-09 10:05:04 +01:00
implementation(compose.materialIconsExtended)
2021-02-25 14:28:33 +01:00
implementation(project(":common:root"))
implementation(project(":common:main"))
implementation(project(":common:list"))
2021-01-31 12:33:41 +01:00
implementation(project(":common:database"))
2021-02-25 14:28:33 +01:00
implementation(project(":common:data-models"))
implementation(project(":common:dependency-injection"))
//DECOMPOSE
2021-01-31 12:33:41 +01:00
implementation(Decompose.decompose)
implementation(Decompose.extensionsCompose)
2021-01-26 13:54:28 +01:00
}
}
}
2021-02-14 00:46:59 +01:00
}