Hello, I am bit new to Kotlin multi platform and t...
# ios
v
Hello, I am bit new to Kotlin multi platform and trying to create a multi platform module to be used in our iOS and android apps. I have few questions if somebody can provide me more info or redirect me to correct documentation: 1. How can I specify minimum iOS version & target iOS version for iOS frameworks rather than going with default one? 2. Is there any limitation on what Apple's iOS native framework we can use from Kotlin module? I was trying to import 
Combine
 framework but was not able to do.
s
Combine is a Swift only framework. Kotlin can only use frameworks that work with Objective C. In some cases you can write a shim around the framework that will expose Objective C compatible wrappers though I doubt such a thing is feasible with Combine.