:question: does anyone know of any documentation /...
# compose-desktop
j
does anyone know of any documentation / examples to learn more about creating a Kotlin native library with the logic for an app, and then using a Compose multiplatform UI to call the native module?
c
from what I can tell, there are no sugary bridges between kotlin jvm and kotlin native, you'd have to rely on JNI. If you're doing multiplatform, surely the business logic could live in the common module, or am I missing something?
j
@czuckie Normally, yeah — but I wanted to try to create a native module with all the required logic, and then use that from Compose as well as SwiftUI 😄