Another one around Zipline, likely a noob question...
# squarelibraries
j
Another one around Zipline, likely a noob question - why does
zipline-loader
not target
js
? Requirement at hand (if it helps to know) is to build a common KMP library that can be distributed and integrated into native SDKs our clients use (android/iOS/web). Idea is to have this common lib load and consume everything zipline. A different
lib
module (
js
) would contain implementation and will be responsible for the zipline bindings and deployment. PS: This is our first attempt at using KMP to go into a prod system so still figuring things out. Please feel free to point out anything that you feel is naive and can be done differently.
rough outline of the project
j
Zipline is unnecessary for JS as the host platform. Our recommendation is to share code to JS as a regular library
j
Yes, that makes sense @jessewilson. Thanks.