I have an android app built in React Native.
In android/app/src/main/res/values/strings.xml i have the app name with diacritics, but app is crashing while opening because of the special characters í and ó.
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<string name="app_name">Parkovací zóny Brno</string>
</resources>
This name works, but i need it to be localized as above:
<string name="app_name">ParkovaciZonyBrno</string>
I've tried to use unicode U+00F3 or with excaping \U+00F3 or html entity, but nothing works.
Can you please point me to the right direction how can i use diacritics in the app name?