version of the coroutine library for my ios target by doing so :
Copy code
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?
m
MJegorovas
10/20/2021, 8:11 AM
You can just use
core:1.5.2-native-mt
in common instead
š 1
j
jean
10/21/2021, 6:10 AM
I used to do that yes, I was just wondering if it was possible to scope the native-mt version only to ios target š