mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
23 lines
683 B
Plaintext
23 lines
683 B
Plaintext
plugins {
|
|
id("multiplatform-compose-setup")
|
|
id("android-setup")
|
|
id("kotlin-parcelize")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":common:dependency-injection"))
|
|
implementation(project(":common:data-models"))
|
|
implementation(project(":common:database"))
|
|
implementation(SqlDelight.coroutineExtensions)
|
|
implementation(MVIKotlin.coroutines)
|
|
implementation(MVIKotlin.mvikotlin)
|
|
implementation(Decompose.decompose)
|
|
implementation(Decompose.extensionsCompose)
|
|
}
|
|
}
|
|
}
|
|
}
|