Is it possible to declare a resource (e.g. String ...
# multiplatform
m
Is it possible to declare a resource (e.g. String resource like app_name) and use it in both
commonMain
kotlin code and in Android XML (e.g.
manifest.xml
). At the moment, it seems I have to declare such strings both in
commonMain/composeResources
and
androidMain/res
(or android library project res) which is not great. Or alternatively, declare it as an android resource and use expect/actual so that it can be accessed in
commonMain
. Also not great.
🚫 1