How do I add a swift library to a Kotlin/native project?
a
AnaR
06/30/2018, 6:18 PM
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
olonho
07/01/2018, 5:43 PM
if this library can be used from Objective-C - likely it could be used from K/N
s
spierce7
07/02/2018, 2:35 PM
Yes, but how do I add a swift library to a kotlin/native project? Are there any examples?