Hey folks,
We've got an Android & iOS app using KMM. We're looking to make the common code compile to a library usable in a web project (we don't want to use the kotlin/js wrappers)
But there seems very little info on the kotlin docs on how to go about this - are there any links to example projects which achieve something similar? We'd be looking to create a similar workflow to Andorid/iOS where:
• All projects exist in the same repo
• The common code gets packaged as a JS library
• Our web developer can use their own IDE of choice and import the JS library
• The web IDE can hook into the shared code build process in a similar way to
packForXcode
Also, is there any interoperability guide similar to
kotlin/native?
Thanks!