1
votes

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.

1

1 Answers

2
votes

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:

enter image description here

Including the ${} indicates that the plist should get the value with key "MyApp" from the build settings.