Asse83
1
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… 
I’ve also tried “&” to see if xml syntax works but it didn’t.
Does anyone have a suggestion?
Asse83
2
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…
Asse83
3
Awesome… Kindle Fire shows the product name set in Unity… damnit 