I have an app with iOS and Android target, both have been published to the app stores. Now I want to add new versions for desktop and wasm. What is the best approach? Somehow manually add the missing parts or create a new project with the KMP wizard and copy everything over?
c
chrisjenx
06/24/2024, 4:04 PM
Yeah if unsure how to do it, I would create a new project in the wizard and see what extra bits it has.
chrisjenx
06/24/2024, 4:05 PM
Or look through some of the samples, see what they have which you don't.
Adding desktop is generally pretty easy as Android/JVM are fairly similar.
Web is more of pain as theres very little overlap outside of the kotlin common libs so you might need to
expect
more stuff etc.
t
Tobias
06/26/2024, 8:03 AM
Thank you @chrisjenx, your approach is basically what I have decided to do. I have created a blank project with all the targets I need with the wizard and started comparing the single bits and pieces.