Reputation: 2851
I have a cross platform Xamarin Forms app which has the same app name in both the android manifest and the ios info.plist.
On android the name appears correctly under the app icon, however on ios there are no spaces between the words, so what would appear as "My Test App" on android appears as "MyTestApp" on ios.
I have seen this before on other apps, where the name has spaces and appears multi-line, so I guess it's figuring out how to get the app name multi-line.
Is there any other place to set this rather than the plist file?
UPDATE:
Just read this post which states multi-line app names are not supported, but it's from 2012, so is this still the case?
Upvotes: 4
Views: 1151
Reputation: 1749
To show spaces in your app name, you need to put  
where you want the spaces to be. That will then be read as a space character by the compiler/iOS OS.
Note: You need to do this in the source of your info.plist file. It won't work if you use the project settings layout. Look for the CFBundleDisplayName tag.
Upvotes: 5