Hey :wave: Currently I'm developing Kotlin Multipl...
# multiplatform
s
Hey 👋 Currently I'm developing Kotlin Multiplatform Library which has been created from Android Studio IDE itself through Kotlin Multiplatform plugin. Now inside the lib I've created
example
package and inside it created one KMP project to showcase the lib usage. And also linked KMP project with lib in
settings.gradle.kts
as follow :
include(":example:kmp:androidApp")
include(":example:kmp:iosApp")
include(":example:kmp:shared")
After syncing the project I'm able to see
androidApp
run configuration but
iosApp
is not visible to run the lib code on ios device. This is my first time about creating KMP lib so might be missing some ios/xcode related configuration steps. Any help or lead would be much appreciated TIA.
p
AFAIK the iosApp needs to be created with Xcode and is not a gradle module. Not sure if things have changed lately.
s
Oh ok Will check and update