I began an iPhone project the other day with a silly development code name, and now I want to change the name of the project since its nearly finished.

But I'm not sure how to do this with Xcode, trying the obvious of changing the application's name in the pinfo, causes the signing process to go wrong (I think...) and my app won't launch giving me a Launcher error.

I guess I could make a new project and copy paste everything over, but it seems so primitive, that I'm hoping for a more civilized solution.

Thanks!

link|improve this question

@all: Not fully answered. The title of the application window and the pulldown menu of the application stays with the old name. @Frank Schmitt: The "Rename xCode Project" project fails when the plist file was renamed. It awaits the name Info.plist – JJD Sep 15 '10 at 16:39
feedback

16 Answers

up vote 189 down vote accepted
  1. Go to Targets in Xcode
  2. "Get Info" on your project's target (your current silly development name)
  3. Search for "Product Name" under "Packaging". Change the value of that what you want the new program name is going to be.
link|improve this answer
Thanks I'll try it when I get home! – Robert Gould Oct 27 '08 at 3:49
That worked, thanks! – Robert Gould Oct 27 '08 at 14:48
2  
I had to quit XCode and delete my build directory before it would take for me. – sbwoodside Aug 21 '09 at 20:41
6  
Also, remember to change this in each of the configurations! (Debug, Release, Ad Hoc, App Store, etc) – Tony Eichelberger Jan 20 '10 at 22:31
28  
In Xcode 4 you can simply double click the target name and change it directly in the target list. – mhallendal Apr 15 '11 at 8:12
show 6 more comments
feedback

In Xcode 3.2 just select the Project entry in the Groups & Files panel, then select the menu item Project -> Rename… Worked for me.

link|improve this answer
That was easy... – MattDiPasquale Nov 23 '10 at 20:15
feedback

In Xcode 4 search for "Product Name" under "Build Settings" tab of the target.

link|improve this answer
feedback

You change the bundle display name in the info.plist. It's as simple as that.

link|improve this answer
feedback

In Xcode 4 click on project name to start renaming.

link|improve this answer
But renaming the project at the Product Name under Build settings-> Packaging is primordial step otherwise it will be some issues when submitting the final release. – Luca Apr 15 at 15:49
feedback

I saw the setting as "Product Name" not "Project Name" - in any case, the change worked.

link|improve this answer
1  
Agreed, "Product Name" was the key for me. Giao's instructions are otherwise spot-on. – John M. P. Knox Aug 22 '09 at 23:01
The old iPhone OS 2.x SDK had it as "Program Name". It was changed with 3.0 SDK to "Product name". – Giao Jan 12 '10 at 0:25
feedback

If you need to change the name of the Application as it appears on the iPhone's home screen, you need to do it in the Target configuration, not the project configuration.

1) Expand the Targets group in Xcode, then single-click the item under that. It should share the name of your project, which is also the default name of the application that gets generated.

2) Press command-I to bring up the Info window, then navigate to the Build tag.

3) Set the Configuration drop-down to read All Configurations.

4) Look for a setting called Product Name under the Packaging heading.

5) Change that value to the name you want for your compiled applications and, in the immortal words of Bugs Bunny: Viola! Do a clean then build and your application will take on the new name.

Enjoy :-)

link|improve this answer
feedback

Here's a free utility that does this and works well in my experience:

http://www.macupdate.com/info.php/id/17683

link|improve this answer
this works for everything except renaming your plist file which yu can do manually. – CodingWithoutComments Jun 24 '10 at 16:14
feedback

This is how I changed in Xcode 4:

  1. Click on your Target file (First Main file of the application).
  2. Go to Build Settings.
  3. Scroll down you will find a bar called "Packaging".
  4. Under Packaging you will see Product Name, you can change project name.
link|improve this answer
feedback

In Xcode 4.2,you can use one more option. Just click once on .proj file name at the top in left navigation pane and it will be available for renaming.Rename it and the whole project will get renamed and not only the target.

Hope this helps

link|improve this answer
feedback

There are times when the simple way still doesn't work (or there are echoes of old naming, etc.). I posted an article showing how to fix this by going into the xml of the project files manually here:

http://pushplay.net/blog_detail.php?id=29

link|improve this answer
feedback

I've had to do this a few times. I use a tool called Rename Xcode Project 2.1.

link|improve this answer
feedback

Also: your target name may be the same as your app name - note that changing the target name does not change the app name - only the change in the target properties described below - will change the app name.

link|improve this answer
feedback

Simple ... Goto Project (in the menu bar) Press Rename

link|improve this answer
feedback

If you wanna change the name, that will be displayed on your screen, right under your icon, in Xcode 4, go to Targets->info->Bundle Display Name and change it to whatever you want.

link|improve this answer
feedback

protected by Jeff Atwood Jul 13 '10 at 0:01

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.