<Migrating existing mobile library project to KMM>...
# forum
r
Migrating existing mobile library project to KMM I have an existing Kotlin Android and Swift iOS projects. I would like to gradually migrate these projects to Kotlin Multiplatform. In order to do that, I moved some of the internal logic of the Android project into a common source set. Now, I would like the Swift project to start using this logic but the problem is that the visibility of all this logic is internal ant therefore it doesn’t get packaged inside the iOS framework produced by the KMM project and can’t be used in Swift. If I make...