I might be asking a repeated question but i haven'...
# multiplatform
s
I might be asking a repeated question but i haven't been able to find relevant material here Q: I want to convert my existing kotlin library to a KMP library that uses java dependencies like Java Topology Suite. Since i'm converting it to a KMP library, java isn't supported and well there is a Swift library alternative. I understand i'll have to attach Obj-C annotations to the wrappers of the pure swift library and after cinterop, i'll be able to access those classes. I want to understand the project structure and build processes and how to basically build the library for my other projects. If i'm pointed towards the right direction it would be greatly appreciated. Thanks for anything.
👀 2
d
The docs are usually the best starting point https://kotlinlang.org/docs/multiplatform-ios-dependencies.html To answer your question, yep you're heading in the right direction, if I'm understanding right you're describing exactly what these docs do
s
Thanks a lot mate!!!