Ampersand in application name

On Android and OS, how can I get an ampersand in my app name? I am currently using some other tools as well which allow me to either make a custom manifest or write the & sign in html (&) but I have found no help on this matter so far. And if possible, how to use any other special character?

For iOS at least, use

&

in the product name in Unity in order to make an ampersand. XCode doesn’t like it if you just try to use &.

I haven’t tried this inside Unity, but i did test that it is possible to have an app name on Android that contains an ampersand:

To do this, export your project as a “Google Android Project” and then customize the file containing the app name (strings.xml has these identifiers).

This is the strings.xml i used:

30013-stringsxml.png

That will be too much, every time we want to build an app. I am looking for something like for Xcode, where we write “&”

Thanks for the info though.

You can either use & or And in the product name in your Unity project. Using & seems automatic solution for iOS but will look ugly on Android. Using And, however, means no platform will shows underscore.

Personally, I prefer using And during development and only modify before upload to stores.

For iOS (Xcode)

As other users suggested, you can use &. To modify the app name in Xcode, open Info.plist, select Bundle display name under Information Property List. Then change the name with &.

For Android (Eclipse + ADT)

To modify the app name in Eclipse, open string.xml under folder "res\values", change the app_name with &amps;.

To build your Unity project for Eclipse

I’m not sure if there is any tutorials or guideline online. Here is just my finding:

  1. Run a trial build - when building for Android, checked the checkbox of Google Android Project and Export (the button will change from Build to Export). Remember the list of exported folders.
  2. In Eclipse (with ADT), creates empty projects with the names of the exported folders.
  3. Close Eclipse and merge your exported folders with the empty folders in Eclipse workspace folder.
  4. Open Eclipse and build. It’s wise if you backup both exported folders and empty project folders before you merge. So, if build fail, you may find out the differences and fix the project.