Package ID changed after changing application name

got a little stuck here

I changed the name of my application, the bit that will be displayed under the icon on the device, the package identifier on the right? I want to introduce an update for my application, but now my package identifier is different and there is no code signing profile identifier to select confirmation / distribution. How do I send my application if different identifiers?

Really confused

any help would be much appreciated

thanks

+8
ios xcode identifier bundle
source share
1 answer

By default, your package ID is com.yourcompany. $ {PRODUCT_NAME: rfc1034identifier} in your Info.plist ( Bundle identifier ), if you change PRODUCT_NAME, you will also change your package identifier. You can specify a different package identifier in Info.plist, which you can find in Project Navigator. To change the application name in the Spring Board section (under the icon), you must change the Bundle display name in Info.plist. Read more about Info.plist in the apple documentation:

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

+12
source share

All Articles