let's say you wanted to create an iOS module with ...
# multiplatform
k
let's say you wanted to create an iOS module with some UI that is built upon a kotlin MPP. and let's say you needed to integrate that module with an iOS app that already integrates a kotlin MPP. any thoughts on how to achieve something like that?
s
You'll have to compile all of the Kotlin modules into a single giant app framework. That app framework would include your UI module and other module as dependencies.
k
that's what I was afraid of
ty
s
Unfortunately for now, it is 1 kotlin framework per iOS app.
k
just wondering if anyone came up with a clever way to combine them with, say, cocoapods or anything