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
Just change Product Name in your project's build settings. This will change the bundle identifier with no need to manually touch xcode configuration files.
Just edit the Project name by single click on the Top of project navigator window, will work in this case. You need not to try any other thing. :)
Xcode 7
Select root node of your project -> In editor click on project name -> Select targets -> Identity -> Bundle Identifier
A very simple solution to that is to open the file:
YOURPROJECT.xcodeproj/project.pbxproj
And find for this variable:
PRODUCT_BUNDLE_IDENTIFIER
You'll see something like that:
PRODUCT_BUNDLE_IDENTIFIER = com.YOUR_APP_NAME.SOMETHING;
So, the name on the right is your Bundle Identifier. In my case it works perfectly.
This solve my problem.
Just change the Bundle identifier from Build Setting.
Navigate to Project >> Build Setting >> Product Bundle Identifier
If you are developing a cordova app, make sure to change the version and bundle identifier in the config.xml
as well