js_
js_

Reputation: 4731

in Xcode, Bundle name in info.plist doesn't change bundle name (.app file name)

I'm developing iPhone app.

I changed Bundle name in info.plist.
But .app doen't change from <project name>.app.

*.app file is shown in the Products folder on the bottom of the Project Navigator(left side of the screen).

I believe .app file is called bundle and Bundle name should change .app's name.
Am I wrong or am I missing something?

Upvotes: 4

Views: 3762

Answers (2)

M.Othman
M.Othman

Reputation: 5300

I dunno if i am getting your question right !

but if you just want to change the name of the project you can just click on the project name in the project navigator twice with one second gap between the two clicks !!

if you want to change the name of the application the one will appear in the iPhone device

you may write it on the infoPlist.strings as this

"CFBundleDisplayName" = "youAPPName";

i hope that helps

Upvotes: 2

sujith1406
sujith1406

Reputation: 2822

the applications name(also the display name) is set by a variable called product name .U can change this is in the build settings for target

Upvotes: 9

Related Questions