i don’t know why, but gradle doesn’t want to downl...
# multiplatform
r
i don’t know why, but gradle doesn’t want to download
org.jetbrains.kotlinx:kotlinx-coroutines-core-native
dependency and don’t even throw an error. I have
Copy code
iosMain.dependencies {
            implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.2.0"
}
and in buildscript
Copy code
buildscript {
    repositories {
        maven { url "<https://kotlin.bintray.com/kotlinx>" }
        maven { url "<https://dl.bintray.com/jetbrains/kotlin-native-dependencies>" }
d
Do you have org.jetbrains.kotlinx:kotlinx-coroutines-core in your common module?
r
yes
g
did you enable GRADLE_METADATA?
r
yes
in settings.gradle
enableFeaturePreview("GRADLE_METADATA")
Copy code
gradle wrapper - 4.7
gradle.properties
# kotlin
kotlin_version=1.3.10
kotlin.incremental.multiplatform = true

# kotlin libraries
coroutines_version=1.0.0
ktor_version=1.0.0
serialization_version=0.9.1

# android
gradle_android_version=3.2.0