Hi everyone,
How do you add a space in the display name of an iOS application?
so far i have tried:
proj.SetBuildProperty(targets, "CFBundleDisplayName", "Monkey's" + " " + "World");
proj.SetBuildProperty(targets, "Bundle display name", "Monkey's" + " " + "World");
proj.SetBuildProperty(targets, "CFBundleDisplayName", "Monkey's" + "\x2008" + "World");
proj.SetBuildProperty(targets, "Bundle display name", "Monkey's" + "\x2008" + "World");
It looked good in TestFlight, but the display name of the app when it is installed still does not have a space.
The builds are all made using unity cloud.
Do you guys have any solutions, or can point out if i missed something?
Thanks in advance!