In Xcode 4, I see this for my target summary:
The \"Version\" input corresponds
To JWWalker's question on why you would want to localize CFBundleShortVersionString, that would be the decimal separator. For example in locales where the decimal separator is actually a comma, the version "1.5" would be "1,5".
Quick Fix:
Just add the CFBundleShortVersionString
to the plist file and edit your version.
InfoPlist.strings
{"CFBundleShortVersionString" = "1.1";}
The Apple document "Information Property List Key Reference" says that CFBundleShortVersionString
represents a release version, whereas CFBundleVersion
represents any build, released or not. Also, CFBundleShortVersionString
can be localized, though I don't know why you'd want to, since they say it is supposed to be "a string comprised of three period-separated integers". For a release build, it would be reasonable to make the two numbers the same. For a development build, you might tack something else on to the CFBundleVersion
, maybe another dot and integer.
See the Apple documentation on uploading binaries.
Numbering versions and builds: iTunes Connect extracts its prerelease version number and build number from the binary. The prerelease version number is the Xcode Version number, or the "Bundle version string, short" key in the Info.plist. The build number is the Xcode Build number, or the "Bundle version" key in the Info.plist. The prerelease version number and build number will be shown on the Prerelease tab, as described in Viewing Builds.
Uploading a Binary For An App