What is the difference between Kotlin Native and K...
# announcements
m
What is the difference between Kotlin Native and Kotlin Multiplatform?
a
Kotlin Multiplatform refers to the entire ecosystem (jvm/js/native). Kotlin Native is specifically the toolchain used to cross-compile for native architectures
s
Multiplatform usually also involves building your multiple target platforms off of a shared core of kotlin code for business logic and then may or may not use kotlin, kotlin-js, or kotlin-native in addition to swift or other langs
To aid in the UI layer on each target platform
m
👍