Have anyone managed to statically link an iOS fram...
# kotlin-native
m
Have anyone managed to statically link an iOS framework with kotlin/native app? Also a question to JetBrains guys - is there a plan to write some new examples on kotlin cinterop? I see on github that all examples from kotlin-native have been removed 🤔 (More in 🧵)
Basically what I need is an option like
staticLibraries
from
def
file but for iOS frameworks. The
staticLibraries
works well for
.a
files but I would like to embed a
framework
in my kotlin/native lib
The usecase scenario is to create a k/n bindings for some native (objC) lib in such manner that consumer of k/n library does not have to pull any additional dependencies. I did manage to do it on other platforms (linux, mingw) with
staticLibraries
option but i am stuck when it comes to mac/ios
☝️ 1