Uniruddh
Uniruddh

Reputation: 4436

Unable to rename ios application via CFBundleDisplayName

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

Answers (1)

James Webster
James Webster

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:

enter image description here

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

Upvotes: 2

Related Questions