Hello everyone, how do you share resource loading between desktop and android when utilizing Decompose/MVI? To access resources on Android you need reference to resources, and to get resources you need some kind of context that you cannot seem to get in commonMain.
Making a simple weather app, I have an expect/actual fun that loads imageBitmaps (from res/drawable on android, and resources/images on desktop), but for the android one I need to get access to resources from context but I cannot access context in the commonMain to pass it to the expect fun. And desktop doesn't seem to support Painter API so I have to use imageBitmaps. This seems like a common thing to share ( anything with images really), so there must be a way I am missing out on.
(Architecture is the same as Jetbrains/ Todo Sample)