Hey all,
I am creating an app whose title is “L’autre LaM”. The problem is that, while iOS accepts the title, Android doesn’t because the apostrophe needs to be backspaced. However, when I backspace it in the field of config.xml, iOS complains that backspace is allowed. So I need something like
<name>L'autre LaM</name>
for iOS and
<name>L\'autre LaM</name>
for android, both in the same config.xml. The package names are the same for both (fr.ensemble101.audioguide). Thanks in advance for any help!