Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between "version number" in iTunes Connect, "bundle version", "bundle version string" in Xcode?

Tags:

version

iphone

Apple's doc could have been more clear on how to submit an update version.

As asked in the title, What's the difference between

  1. version number in itunes connect(which you have to supply when you submit an update)
  2. bundle version in xcode
  3. bundle versions string, short

Are they related in any way?

like image 592
eugene Avatar asked Sep 02 '11 08:09

eugene


People also ask

What is bundle version Xcode?

Bundle Version In Xcode (CFBundleVersion) represents just the Build number which identifies an iteration (released or unreleased) of the application. Bundle versions string, short (CFBundleShortVersionString) is a number comprising of three integers separated by dots.

What is a bundle version?

Bundle Version (Code) is used on iOS and Android for example during testing plans, to increase the version by an automated system e.g. Testlfight, Hockeyapp, Unity Cloud Build. For testing you set the Short Bundle Version to the final version number like 1.0.


1 Answers

Yes, they are related. They all refer to the version of your application.

  • iTunes Connect
    This is the version number shown in the App Store; This must be a pure version number like 1.2.3

  • Bundle Version (CFBundleVersion)
    This doesn't need to be a pure version number. This can be something like 12345 or 1.2.3 (Build 12345AB). This is shown in the About window for Mac OS X apps for example and is often more a "Build Number" than a "Version Number".

  • Bundle Version String (CFBundleShortVersionString) This value is used as the "real" version number. This must be the same string as used for the version in iTunes Connect.

Update:
As pointed out by @snlehton, the CFBundleVersion has to be a pure version number like 1.2.3 when you want to upload your application to the (iOS) App Store.

like image 65
Fabian Kreiser Avatar answered Oct 03 '22 19:10

Fabian Kreiser