Is it possible to include Swift/Obj-C code in the ...
# multiplatform
i
Is it possible to include Swift/Obj-C code in the iOS sourceset (
iosMain
) and interact with it from Kotlin code?
s
No. You'll need to produce a framework from that code and and interact with it like any other dependency.
👍 1
i
Thanks
h
Objective C code works: either via platform code or using custom c definitions.
c
i
Thank you!