https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
k

Kathrin Petrova

08/18/2020, 2:18 PM
Hey everyone! My name is Kate, and I’m the new developer advocate for Kotlin Multiplatform Mobile. I’d be happy to help you dig into KMM and chat about your experience with KMM anytime. As you know, we’ve just released Kotlin 1.4! 🥳To help you start using the new features of Kotlin multiplatform in existing projects, we've published the migration guide for multiplatform projects. We’ll be very grateful if you report any bugs you find to our issue tracker.
❤️ 1
🎉 21
👋 14
k

Kris Wong

08/18/2020, 2:31 PM
Now we just wait for all of our dependencies to update to 1.4 and publish new versions 🙂
a

Archie

08/18/2020, 3:17 PM
Hi, i have a very dumb question. So with Kotlin 1.4 we only have to do:
Copy code
kotlin {
    sourceSets {
        val commonMain by getting {
            dependencies {
               implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9")
            }
        }
    }
}
and all dependencies for other platforms are provided. I was wondering what version does this provide for Kotlin/Native? I assume its 1.3.9 as well. My question is if this is the case, so does it mean that if i want to try out
1.3.8-native-mt-1.4.0-rc
I have to still manually add it in as dependency in native right?
k

Kris Wong

08/18/2020, 3:19 PM
just use the same version for all platforms
👍 1
1
l

louiscad

08/18/2020, 7:48 PM
Thanks for linking the upgrade guide and thanks for including a section for multiplatform library authors!
❤️ 1
16 Views