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