SpotiFlyer/common/compose/build.gradle.kts
2021-02-25 18:58:33 +05:30

27 lines
811 B
Plaintext

import org.jetbrains.compose.compose
plugins {
id("multiplatform-compose-setup")
id("android-setup")
id("kotlin-parcelize")
}
kotlin {
sourceSets {
commonMain {
dependencies {
implementation(compose.materialIconsExtended)
implementation(project(":common:root"))
implementation(project(":common:main"))
implementation(project(":common:list"))
implementation(project(":common:database"))
implementation(project(":common:data-models"))
implementation(project(":common:dependency-injection"))
//DECOMPOSE
implementation(Decompose.decompose)
implementation(Decompose.extensionsCompose)
}
}
}
}