space in app name - iOS

549 Views Asked by At

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.

3

There are 3 best solutions below

0
On BEST ANSWER

you can create a file i18n/en/app.xml with the following content:

<resources>
    <string name="appname">My App Name</string>
</resources>

Then it is localised by Titanium and shows up correctly on the device dashboard

2
On

enter image description here

This is where you put your app name which shows up on iTunesConnect. The app name which shows up with icon on iOS device springboard is the one you specify in tiapp.xml file.

0
On

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 &#x2007; code. Example for your app name (My Appname must be My&#x2007;Appname):

<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <string name="appname">My&#x2007;Appname</string>
</resources>