How do I add a swift library to a Kotlin/native pr...
# kotlin-native
s
How do I add a swift library to a Kotlin/native project?
a
I don't think you can use swift libraries in Kotlin/Native. Can use the objective-C equivalent. You add the objective-c equivalent using import platform.<lib>.*
o
if this library can be used from Objective-C - likely it could be used from K/N
s
Yes, but how do I add a swift library to a kotlin/native project? Are there any examples?