Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bundle identifier changed after changing application name

a little stuck here,

I changed the name of my application, the bit that will show under the icon on a device, bundle identifier right ? I want to submit an update to my app, but now my bundle identifier is different, and there is no code signing identity profile to select to validate/distribute. How do I go about submitting my app if the identifiers are different?

Really confused

any help would be much appreciated

thanks

like image 981
holtii Avatar asked Apr 13 '13 06:04

holtii


People also ask

Can I change my bundle identifier?

Once your app is approved and available for download on the Apple App Store, your Bundle ID cannot be changed.

Is bundle ID same as package name?

In iOS, the package name is called bundle id or identifier.

What is the difference between app ID and bundle ID in iOS?

An App ID is a string used to identify one or more apps from a single development team. The string consists of two parts, the Team ID and the bundle ID separated by a period (.). The Team ID is supplied by Apple, while the bundle ID is supplied by the developer.

Is bundle ID important?

It allows you to distinguish between separate listings of your app, like a paid and free version. There is evidence that shows your application ID impacts ASO rankings by indexing keywords which allows you to rank for them sooner.


1 Answers

By default your bundle identifier is com.yourcompany.${PRODUCT_NAME:rfc1034identifier} in your Info.plist (Bundle identifier key), if you change PRODUCT_NAME you change also your bundle identifier. You can specify other bundle identifier in Info.plist which you can find in Project Navigator. To change the name of application in Spring Board (under icon) you have to change Bundle display name in Info.plist. For more details about Info.plist read apple documentation:

https://developer.apple.com/library/ios/#documentation/General/Reference/InfoPlistKeyReference/Introduction/Introduction.html

like image 85
Vitaly Berg Avatar answered Sep 21 '22 00:09

Vitaly Berg