<Kotlin Multiplatform : add a Kotlin/Native as com...
# stackoverflow
u
Kotlin Multiplatform : add a Kotlin/Native as common code I want to create a Kotlin project compatible with Android and Desktop. This project needs to bind to a C library. The way I understand it, I should create a Kotlin multiplatform project, and have a common code which wraps the C library using JNI. However, Kotlin/Native allows a way easier interop with C libraries, so I'd like to use that. But it seems like Kotlin/Native is a platform (equal to eg jvm or android), so it can't be used as a common code. Is there a way to do what I want? I...