2022-03-10 17:47:37 +06: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 15:50:26 +06:00
|
|
|
alias(libs.plugins.kt.jb.compose)
|
2022-03-10 17:47:37 +06:00
|
|
|
}
|
|
|
|
|
2024-08-27 18:57:59 +06:00
|
|
|
apply from: "$mppComposeJvmJsAndroidLinuxMingwLinuxArm64Project"
|
2022-03-10 17:47:37 +06:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api libs.kt.coroutines
|
2022-03-12 00:55:03 +06:00
|
|
|
api project(":micro_utils.coroutines")
|
2022-03-17 14:55:47 +06:00
|
|
|
api project(":micro_utils.common.compose")
|
2022-03-10 17:47:37 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|