SpotiFlyer/common/compose-ui/build.gradle.kts

33 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-01-26 13:54:28 +01:00
plugins {
id("multiplatform-compose-setup")
id("android-setup")
}
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(MVIKotlin.rx)
implementation(SqlDelight.coroutineExtensions)
implementation(MVIKotlin.coroutines)
2021-01-31 12:33:41 +01:00
implementation(MVIKotlin.mvikotlin)
2021-02-01 17:33:30 +01:00
//implementation(MVIKotlin.mvikotlinExtensionsReaktive)
//implementation(Badoo.Reaktive.reaktive)
2021-01-31 12:33:41 +01:00
implementation(Decompose.decompose)
implementation(Decompose.extensionsCompose)
2021-01-26 13:54:28 +01:00
}
}
}
}
2021-02-01 17:33:30 +01:00
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xallow-jvm-ir-dependencies", "-Xskip-prerelease-check",
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
"-Xuse-experimental=kotlinx.coroutines.TheAnnotationYouWantToDisable"
)
}
}