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.

link|improve this question

77% accept rate
feedback

1 Answer

up vote 2 down vote accepted

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|improve this answer
... and it's documented here developer.apple.com/documentation/MacOSX/Conceptual/… – Ned Deily Aug 18 '09 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? – Mike2012 Aug 19 '09 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 '09 at 21:27
feedback

Your Answer

 
or
required, but never shown

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