2020-09-26 22:19:20 +06:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2020-11-10 15:43:15 +06:00
|
|
|
id "com.android.library"
|
2020-09-26 22:19:20 +06:00
|
|
|
}
|
|
|
|
|
2024-08-27 18:57:59 +06:00
|
|
|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
|
2021-06-22 13:36:23 +06:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
2024-04-27 15:34:52 +06:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api libs.klock
|
|
|
|
}
|
|
|
|
}
|
2021-06-22 13:36:23 +06:00
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
|
|
|
api project(":micro_utils.coroutines")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
androidMain {
|
|
|
|
dependencies {
|
2022-09-22 23:39:08 +06:00
|
|
|
api libs.android.fragment
|
2021-06-22 13:36:23 +06:00
|
|
|
}
|
|
|
|
}
|
2023-04-03 22:35:41 +06:00
|
|
|
|
2024-05-12 19:17:16 +06:00
|
|
|
nativeMain {
|
2023-10-20 21:53:27 +06:00
|
|
|
dependencies {
|
|
|
|
api libs.okio
|
|
|
|
}
|
|
|
|
}
|
2021-06-22 13:36:23 +06:00
|
|
|
}
|
|
|
|
}
|