I'm trying to use <https://www.jetbrains.com/help/...
# compose
m
I'm trying to use https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-images-resources.html#resource-usage but Android Studio can't find
Res
anywhere. I made sure my font is in
commonMain/composeResources/font
. I updated my version of the Compose plugin to
1.6.10-beta03
(as rc01 failed to fetch some dependencies) and
compose.components.resources
is in my dependencies block.
Never mind, I see the issue. the compose compiler only supports using
commonMain
for the resources dependency, but I have all of my compose dependencies under
appMain
because I have non-compose kotlin/native components. That said, I can't figure out how to actually get it to work even when looking through the internals