Can someone give me pointers as how to migrate a e...
# multiplatform
u
Can someone give me pointers as how to migrate a existing ios project (pure ios), but there is shared code as well already? This is my current setup
Copy code
iOsAppA       iOsAppB
    \            /
     iOsCore
so..there is shared code between the two apps via cocoapods How would you instroduce KMP to this setup? Can I do something like this?
Copy code
iOsAppA       iOsAppB
    \  \          /
kmpAppA  iOsCore
            \
           kmpSharedCore?
I think I read that there should be just one
umbrella
module which is then exposes to the ios app. Is this still doable in my setup?