I have an app with iOS and Android target, both ha...
# multiplatform
t
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
Yeah if unsure how to do it, I would create a new project in the wizard and see what extra bits it has.
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
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.
👍 1