Reputation: 61606
I did this before, but can't remember it now.
I want to change what appears under the icon of my app on the home screen. Where in Xcode do I do this?
Upvotes: 1
Views: 465
Reputation: 20799
As implied by the fact that "Bundle display name" is usually $(PRODUCT_NAME), you should actually set the "Product Name" build setting in your Target's build setting, for all configurations, and let it propagate to all the places that depend on it.
Upvotes: 3
Reputation: 36617
Yes, you can do this in your info.plist file (included in your xcode project). The Key is "Bundle display name"
Upvotes: 1