How to access `composeResources` strings in XML in...
# compose
m
How to access
composeResources
strings in XML in another module?
a
as in how to access resources from a non compose module ?
m
I mean reference a compose resources string in a xml file in an android module
In kotlin you access them by
getString()
or
stringResources()
but how to access them in an XML file?
w
I don't think that's possible. CMP resources are packaged in the assets dir, not encoded as real resources in the ARSC on Android, at least from what I understand.