Reputation: 4436
I want to change the application name that shown below is app icon. but i am unable to do this from info.plist file.
I have tried changing following value:
Bundle display name:${PRODUCT_NAME} ==> Bundle display name:${MyApp}.
But it didn't worked.
Upvotes: 1
Views: 415
Reputation: 32066
The app name doesn't need to be surrounded by ${}
My App
instead of
${MyApp}
If you are changing the value in the default view for the plist, it should look like this:
Including the ${}
indicates that the plist should get the value with key "MyApp" from the build settings.
Upvotes: 2