I\'m trying to submit my first app in iOS
. I have entered iOS Provisioning Portal
and I am about to create an app ID.
Lets say that I name
View this picture to see how you can change the bundle identifier
Explanation:
As you can see in the picture, the name of my App is PracticeApp. And my bundle identifier is: com.hello500.PracticeApp
In this case, You can change hello500 to change the bundle identifier of the app.
In XCode 7 you can update your bundle identifier by double clicking your target and changing the name.
I know that its late but it might be helpful for people who need to change the Bundle Identifier of the app. In the finder go to the project folder:
the project file --> Right click on your project file '*.xcodeproj'
--> choose 'Show Package Contents'
--> Double click to open 'project.pbxproj' file
--> find 'productName = NAME_YOU_WANT_TO_CHANGE' in the
'/* Begin PBXNativeTarget section */'
The ${PRODUCT_NAME:rfc1034identifier} variable will be replaced with the name you have entered and new Bundle Identifier will be updated to what you need it to be.
Actually you can change it in Build Settings; at the bottom there is a section "User-Defined" where you can easily change PRODUCT_BUNDLE_IDENTIFIER.
I prefer this way, because if you change the info variable you are altering the reference to the other value.
By default, Xcode sets the bundle identifier to the bundle/company identifier that you set during project creation + project name.
This is similar to what you see in the Project > Summary screen.
But you can change this in the Project > Info screen. (This is the Info.plist.)
Here's the answer from Apple's official documentation, just tried, it's working.
Setting the Bundle ID
The default bundle ID in your Xcode project is a string formatted as a reverse-domain—for example, com.MyCompany.MyProductName. To create the default bundle ID, Xcode concatenates the company identifier with the product name you entered when creating the project from a template, as described in Setting Properties When Creating Your Xcode Project. (Xcode replaces spaces in the product name to create the default bundle ID.) It may be sufficient to replace the company identifier prefix in the bundle ID or you can replace the entire bundle ID. For example, change the company identifier prefix to match your company domain name or replace the entire bundle ID to match an explicit App ID.
For Mac apps, ensure that every bundle ID is unique within your app bundle. For example, if your app bundle includes a helper app, ensure that its bundle ID is different from your app’s bundle ID.
Follow these steps to change the bundle ID prefix in the General pane in the project editor.
To set the bundle ID prefix
In the project navigator, select the project and your target to display the project editor.
Click General and, if necessary, click the disclosure triangle next to Identity to reveal the settings.
To set the bundle ID
In the project navigator, select the project and your target to display the project editor.
Click Info.
Enter the bundle ID in the Value column of the “Bundle identifier” row.
If you're feeling interested in reading more, please check APP Distribution Guide from Apple.