1

I sumbmitted an app of mine to the App Store. It has the correct name there which is good but when I download it the name of the app on my home screen is the name of the Bundle ID which is obviously not the proper one. How can I change the name so that it equals the name in the App Store?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
  • The name shown under the icon is the "Bundle display name". – rmaddy Sep 27 '16 at 04:51
  • In your info.plist change "CFBundleDisplayName" or "Bundle display name" to same as in appstore as @rmaddy said.You may have to resubmit app. – Sanman Sep 27 '16 at 05:01

1 Answers1

1

Go to Info.plist and then change Bundle name like below will change app name that will show in home screen.

enter image description here

ajay_nasa
  • 2,278
  • 2
  • 28
  • 45
  • This is incorrect. It is the "Bundle display name", not the "Bundle name" shown to the user below the icon. See the documentation for `CFBundleName` and `CFBundleDisplayName`. – rmaddy Sep 27 '16 at 05:09
  • 1
    It depends apps to apps some of my app does not have "Bundle display name" so i used to change "Bundle name", you can see screenshot. – ajay_nasa Sep 27 '16 at 05:12