Hello, I have a library for iOS written in Kotlin/Native and I need to use another framework
https://github.com/segmentio/analytics-ios in it. Now, I found this article
https://medium.com/swlh/kotlin-multiplatform-ios-frameworks-dependencies-2320ca13ea30 that explains how to achieve what I want, but it uses FrameworkName.framework folder that I have no idea where to get. What I tried:
• Looking in podfile of the framework. The
source
leads to the Github page of the project, which does not contain even a hint of .framework directory
• Googling how to extract such folder from CocoaPods (something like downloading .jar from Maven dependencies). Haven't found anything.
Is there a way to solve my problem?