Hey guys, we are using Kotlin to build a native Android app, and we are planning to also build an native iOS app.
We have a lot of business logic written in Kotlin right now, and its nicely layered, so seperated from the Android framework.
I've read about Kotlin Multiplatform and its option to share common logic between different platforms, although after reading more, I'm not sure if our usecase is supported by Kotlin multiplatform.
My question and usecase is: is it possible to have a 3 seperate repo setup: core (written in Kotlin), android-app (written in Kotlin) and ios-app (written in Swift). android-app and ios-app both use the core project.