How do get a space in an app name for iOS (appc SDK 6.2.0). In tiapp.xml I have the space in the name "My Appname" and when I publish to iTuneConnect it shows up as "MyAppname".
Any advice will be greatly appreciated.
How do get a space in an app name for iOS (appc SDK 6.2.0). In tiapp.xml I have the space in the name "My Appname" and when I publish to iTuneConnect it shows up as "MyAppname".
Any advice will be greatly appreciated.
It is a known iOS 11 bug and as mentioned Sebastian, you should use file "app/i18n/en/app.xml" for localizing application name, but instead space, use  
code. Example for your app name (My Appname
must be My Appname
):
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<string name="appname">My Appname</string>
</resources>
you can create a file i18n/en/app.xml with the following content:
Then it is localised by Titanium and shows up correctly on the device dashboard