Hey. We have a "Vocabulary" string resources file ...
# moko
v
Hey. We have a "Vocabulary" string resources file which holds strings with keys aka
MOBILE.SOME_CHAPTER.TITLE
. We sync that file via cicd on post clone. Internally we have MR.base.strings.xml with links to that Vocabulary file:
Copy code
<string name="my_chapter">@string/MOBILE.SOME_CHAPTER.TITLE</string>
That came from our android project and it doesn't work for iOS in KMP. For iOS it compiles into:
Copy code
"my_chapter" = "@string/MOBILE.SOME_CHAPTER.TITLE";
Can I make it work? upd: String references Not supported for iOS
Or moko supports resources linking and we just have issues with resources setup
Copy code
<string name="reload">@string/another_string</string>
    <string name="another_string">QQ</string>
Seems like resource linking is not supported. That example also didn't work.
Copy code
"reload" = "@string/reload_another";
"reload_another" = "Reload De";
I see in the docs that references work for colours
Okay, when I learned that that feature called "References" I found out that it is not supported. https://github.com/icerockdev/moko-resources/issues/266
a
Now only color references supported, yes