Does anyone tried to use bidirectional communication in Kotlin multiplatform with C for both iOS and Android?
Trying to reduce amount of JNI code and share C code between iOS and Android.
What is the best way of doing this and how to setup this?
From some samples I seen was only including in
commonMain
implementation =
files("my_c_folder")
but not sure if thats really the case.