Problem with "" char in Product Name

Hey folks,

I’m using Unity 4.0.1f2. Having a Product Name in the PlayerSettings that contains the “” character (without the quotes) gives me a “_” on my devices… :face_with_spiral_eyes:

I’ve also tried “&” to see if xml syntax works but it didn’t.

Does anyone have a suggestion?

Ok, you have to edit the AndroidManifest.xml by yourself.

android:label=“@string/app_name” references to the name inside the resource file (for localization reasons)

Just change it to

android:label=“Prefix & Postfix”

You can’t localize it anyway…

Awesome… Kindle Fire shows the product name set in Unity… damnit :rage: