2022-03-10 11:47:37 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
id "com.android.library"
|
|
|
|
alias(libs.plugins.jb.compose)
|
2024-05-24 09:50:26 +00:00
|
|
|
alias(libs.plugins.kt.jb.compose)
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$mppComposeJvmJsAndroidLinuxMingwLinuxArm64Project"
|
2022-03-10 11:47:37 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api libs.kt.coroutines
|
2022-03-11 18:55:03 +00:00
|
|
|
api project(":micro_utils.coroutines")
|
2022-03-17 08:55:47 +00:00
|
|
|
api project(":micro_utils.common.compose")
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|