How to add krangl as a dependency in a multiplatform project?
Summary
I'm building a multiplatform excel parser for myself and so I'm building an android app and a desktop app.
I used krangl in jupyter notebook to prepare the set of steps to let me do the parsing and now I'm working on integrating these operations into the Android and Desktop app. But when I try importing the lib from a common shared module (commonMain) the IDE fails to import it
krangl is not a multiplatform library and so if I try to import it from commonMain it won't work. It works in platform specifc modules like desktopMain and androdMain which can be JVM dependent libraries.
Question
How to add krangl as a dependency in a multiplatform project?
Summary
I'm building a multiplatform excel parser for myself and so I'm building an android app and a desktop app.
I used
krangl
injupyter notebook
to prepare the set of steps to let me do the parsing and now I'm working on integrating these operations into the Android and Desktop app. But when I try importing the lib from a common shared module (commonMain) the IDE fails to import itMinimal reproducible example
But it works in the desktop module