vote up 0 vote down star
1

I am doing maintenance on app that other people created and I want to change the version in the Info.plist file so that when someone selects the app in the finder the correct version will show up. When I manually edit the info.plist file and change the bundle version string from 1.0 to 3.0 it still display 1.0 in the finder. Also, when I recompile the app the version string gets set to 1.0. Can anyone direct me to some info about how these kinds of variables get set and how the info.plist gets created or setup. I don't really know much about the info.plist and have not found any good resources online.

flag

68% accept rate

1 Answer

vote up 1 vote down check

You're looking for an entry named CFBundleGetInfoString. The value of this entry is a string which the Finder displays in the info window. You should set the CFBundleShortVersionString to the same version you mention in the info string.

link|flag
... and it's documented here developer.apple.com/documentation/MacOSX/… – Ned Deily Aug 18 at 19:51
There are no references to CFBundleGetInfoString in the entire project (this is likely why it is version 1.0). Where would these variables normally be set? Would I do this in an xml and include that with the project? – Michael Minerva Aug 19 at 20:12
The CFBundleGetInfoString is an entry in the Info.plist file of the bundle in question, in this case the application. You said, you edited the Info.plist file to change the bundle version. Setting the CFBundleGetInfoString works the same way. – Nikolai Ruhe Aug 19 at 21:27

Your Answer

Get an OpenID
or

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