Regarding to docs:
" The packages from platform libraries are available by default. No special link flags need to be specified to use them. Kotlin/Native compiler automatically detects which of the platform libraries have been accessed and automatically links the needed libraries.
On the other hand, the platform libs in the distribution are merely just wrappers and bindings to the native libraries. That means the native libraries themselves (.so
, .a
, .dylib
, .dll
etc) should be installed on the machine. "
But when I inspect list of Native iOS libs at Android Studio, I spot, that I don’t have some libs at Android Studio which are available in XCode and some functions from another libs are not available at KMP.
So, I would like to ask - how looks like ‘automatic detection’ for Native Libraries for MacOS/iOS? Why some libs/function are not available? Is it connected to lack of support for Swift code?
Greetings