Hi all, I am trying to get the following setup of ...
# multiplatform
u
Hi all, I am trying to get the following setup of modules running: - JSProject (JS) - depends on shared - JavaProject (JVM) - depends on sharedJVM - AndroidProject (JVM) - depends on sharedJVM - sharedJVM (JVM) - depends on shared - shared (common) The three *Projects compile down to something executable (App, jar with main(), browser js) sharedJVM provides some platform independent JVM code, used by android and java shared defines
expect inline fun debugLog()
which is implemented in all three *Projects as some form of logging Is there any way to use debugLog from sharedJVM? Or is multiplatform the wrong tool for this and I should look at dependency injection?