Updated_to_latest_1_2_0_version_of_coroutines_alon...
# coroutines
j
Updated_to_latest_1_2_0_version_of_coroutines_along_with_kotlin_1_3_30__serialization__0_11_0_now_im_getting_this_on_my_iOS_target_.txt
Updated to latest 1.2.0 version of coroutines along with kotlin 1.3.30, serialization: 0.11.0 now im getting this on my iOS target
Got the following dependencies declared:
Copy code
in buildscript:
        maven { url '<https://dl.bintray.com/kotlin/kotlin-eap>' }
        maven { url '<https://dl.bintray.com/kotlin/kotlin-dev>' }
        maven { url "<https://kotlin.bintray.com/kotlinx>" }

in repositories:
        maven { url "<https://kotlin.bintray.com/kotlinx>" }
        maven { url '<https://dl.bintray.com/kotlin/kotlin-eap>' }
        maven { url '<https://dl.bintray.com/kotlin/kotlin-dev>' }
Any ideas whats going on? It seems like the artifact does exist on bintray
ah and also the iOSMain dependencies:
Copy code
iOSMain {
            dependencies {
                implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.2.0"
                implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime-native:$serialization_version"

                implementation "io.ktor:ktor-client-ios:$ktor_version"
                implementation "io.ktor:ktor-client-core-native:$ktor_version"
                implementation "io.ktor:ktor-client-json-native:$ktor_version"
                implementation "io.ktor:ktor-client-logging-native:$ktor_version"
            }
        }
If anyone else runs into this the solution can be found here: https://github.com/Kotlin/kotlinx.serialization/issues/436