Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I want to change my bundle identifier as well as product name in Xcode 6.3

Tags:

ios

xcode6

I have completed project but unfortunately, I have to change product name and bundle identifier also, in Xcode 6.4. How can I do this?

like image 637
Asad ali Avatar asked Aug 03 '15 11:08

Asad ali


People also ask

Can you change bundle identifier Xcode?

Change the Bundle IDChoose your project from the left side, then your app target under TARGETS, select the General tab and rename the Bundle Identifier.

How do I change my IPA bundle identifier?

You cannot change the bundle identifier of an app. You can create a second app that looks and behaves exactly the same and has a different bundle identifier, but the bundle identifier is what makes it that app. It's the identity of the application.


2 Answers

Change the value of Product Name (referenced as PRODUCT_NAME) in the build settings of the project or target.

screen shot

Both the Bundle identifier and Bundle name in your info plist reference this build setting, so changing it here updates both these values. I personally wouldn't change the Bundle identifier in the plist directly as it has a strict set of allowed characters and you can see from peoples examples it adds the rfc1034identifier to the setting reference which converts any invalid characters.

The default value ($TARGET_NAME) uses the name of the target in the left side panel, so you could also change this name.

like image 155
Rich Avatar answered Sep 22 '22 15:09

Rich


You can set "Product Name" Xcode Build Settings. You want to set your bundle identifier in the info.plist file for your app.

The bundle identifier in the Info.plist as ${PRODUCT_NAME} - You can change app bundle name here

enter image description here

like image 22
soumya Avatar answered Sep 20 '22 15:09

soumya