Hello,
How can we consume .c or .h or .a files in Common code in kotlin multiplatform and do some File IO and publish it to IOS and Android ?
j
jw
10/18/2022, 1:51 PM
You would have to expect/actual them for use in common. On Kotlin/Jvm you can use JNI. On Kotlin/Native you can use cinterop. On JS you can use things like emscripten or even bind to WASM.