Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change bundle identifier in Xcode when submitting my first app in IOS

Tags:

xcode

ios

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 my bundle identifier:

com.mycompany.appdemo 

Then going to Xcode and in the summary section I want to change the bundle identifier.

But I cannot erase what is being written there, only the start of it. The name of my app is in grey color and I cannot delete it or change it.

So I see in grey color somethng like this App-Demo which is the name of the project in the left side.

My question is this: Is it a problem? Do I have to create a new app id named com.mycompany.App-Demo or something else?

Here is a picture also. enter image description here As you can see I can only edit the first part.

like image 871
ghostrider Avatar asked Sep 22 '12 15:09

ghostrider


People also ask

How do I change my product bundle identifier?

Under Targets > Build settings, scroll to Packaging. Change your Product name to the desired name & Product bundle identifier to the new one. Once you do this, automatically your project display name & bundle id changes to the new one in General tab.


1 Answers

By default, Xcode sets the bundle identifier to the bundle/company identifier that you set during project creation + project name.

Project Creation - Bundle/Company Identifier + Product Name

This is similar to what you see in the Project > Summary screen.

Project > Summary

But you can change this in the Project > Info screen. (This is the Info.plist.)

Project > Info

like image 188
neilvillareal Avatar answered Oct 15 '22 07:10

neilvillareal