android – Kotlin Multiplatform Library Run Configuration


I’m developing the Kotlin Multiplatform Library, already written the androidMain, commonMain and iosMain. Now to test the written code on actual android and ios device I have added example package inside the root folder and created the new KMP project inside it where I can be able to showcase the my KMP library usage to community.

To link the example project with my library I’ve added below lines in library settings.gradle.kts file :

include(":example:kmp:androidApp")
include(":example:kmp:iosApp")
include(":example:kmp:shared")

After syncing the project I can see the androidApp run configuration to run and test the library code on device but not able to see iosApp run configuration to run the app on ios device.

enter image description here

Any help or lead will be appreciated.

Latest articles

spot_imgspot_img

Related articles

Leave a reply

Please enter your comment!
Please enter your name here

spot_imgspot_img