Are there other ways to import a pure swift library (without objc annotations) into a KMP library?
I took a look at
gitlive’s firebase library, but it seems like Firebase is published as an objC library, which they can import into KMP with carthage and a little bit of witchcraft.
The other option that I found was
, where he creates an objC wrapper around swift functions and then using it in KMP with cinterop. This does not seem sustainable for porting non-trivial swift libraries to KMP.
Am I missing something here?