Vlad
08/07/2023, 1:13 PMMOBILE.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:
<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:
"my_chapter" = "@string/MOBILE.SOME_CHAPTER.TITLE";
Vlad
08/07/2023, 1:19 PMVlad
08/07/2023, 1:47 PM<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.
"reload" = "@string/reload_another";
"reload_another" = "Reload De";
Vlad
08/07/2023, 2:03 PMVlad
08/07/2023, 2:09 PMalex009
08/11/2023, 8:26 AM