https://kotlinlang.org logo
k

Kris Wong

07/22/2019, 8:13 PM
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

Sam

07/22/2019, 9:08 PM
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

Kris Wong

07/22/2019, 9:38 PM
that's what I was afraid of
ty
s

Sam

07/22/2019, 9:57 PM
Unfortunately for now, it is 1 kotlin framework per iOS app.
k

Kris Wong

07/23/2019, 1:21 PM
just wondering if anyone came up with a clever way to combine them with, say, cocoapods or anything
2 Views