leandro
09/22/2021, 7:40 PMJavier
09/22/2021, 7:49 PMJavier
09/22/2021, 7:49 PMFrancis Mariano
09/22/2021, 7:57 PMval commonMain by getting {
dependencies {
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
}
}
val iosX64Main by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-iosx64:1.5.2-native-mt") {
version {
strictly("1.5.2-native-mt")
}
}
}
}
leandro
09/22/2021, 8:00 PMleandro
09/22/2021, 8:01 PMJavier
09/22/2021, 8:01 PMleandro
09/22/2021, 8:03 PMJavier
09/22/2021, 8:06 PMleandro
09/22/2021, 8:25 PMval iosMain by getting {
dependencies {
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0-native-mt") {
isForce = true
}
}
}
whereas
val iosMain by getting {
dependencies {
api("org.jetbrains.kotlinx:kotlinx-coroutines-core") {
version { strictly("1.5.0-native-mt") }
}
}
}
does not !leandro
09/22/2021, 8:26 PMFrancis Mariano
10/01/2021, 7:38 PMFrancis Mariano
10/01/2021, 7:38 PMleandro
10/01/2021, 7:41 PMFrancis Mariano
10/01/2021, 7:47 PM