Will changing the product name cause problem?

后端 未结 3 1501
说谎
说谎 2021-01-20 05:00

For the next version of my iPhone app say 1.3 I want to change the product name and i am keeping bundle identifier same as old version. Is it cause any problem in AppStore?

相关标签:
3条回答
  • 2021-01-20 05:40

    No, as long as you keep the bundle ID the same, it's considered to be the same app.

    Additionally, in the iTunes Connect portal, you can rename your app when you submit a new version of your app. (I did this with version 2 of Sefira, which I renamed to "Ultimate Omer 2".)

    Just bear in mind that your iTunes "slug" (http://iTunes.com/apps/appname) remains with the first app name.

    If you want to change the name of the app as it appears on the device, change the "Bundle Display Name" property in the info plist file.

    0 讨论(0)
  • 2021-01-20 05:40

    No, if you keep your bundle identifier the same, it's considered the same app, whatever you change your app's product name to. The binary with the new product name will be accepted, and devices will download it as an update, as per normal.

    0 讨论(0)
  • 2021-01-20 05:51

    Changing the "product name" in the configuration will change the executable name also. Since for executable name they used same $PRODUCT_NAME. So it was crashing if i will replace the old version.

    The solution i added the key "Bundle display name" in the info.plist and entered to new value for the key.

    0 讨论(0)
提交回复
热议问题