jean
10/20/2021, 7:30 AMnative-mt
version of the coroutine library for my ios target by doing so :
val commonMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
}
}
val androidMain by getting
val iosMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core") {
version {
strictly("1.5.2-native-mt")
}
}
}
}
is it the correct way to do it?MJegorovas
10/20/2021, 8:11 AMcore:1.5.2-native-mt
in common insteadjean
10/21/2021, 6:10 AM