In XCode I have Bundle Version and Bundle Version string, short. There is also a version in iTunes Connect. Just trying to see what I should use for each one and which one iOS uses to determine the version of the app so that a newer version properly replaces and older version.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Long story short: you can just set both Bundle Version and Bundle Version string short to to the same value. You will need to increase them between submissions. The version in iTunes Connect is the version displayed to the user in the App Store and does not have to match the version strings in your Info.plist

link|improve this answer
2  
Thanks for the info - is it possible to get a little more detail as to the intended purpose behind the two different values. Or at least where I can find that information for myself. Thanks for the quick response. – Brian Apr 12 '11 at 15:28
feedback

Here's the excellent post on how to do the versioning easy way. My general approach is tou use x.y.z where 'x' is gets increased on major releases, 'y' is increased for versions introducing new functionality and 'z' is used for bug-fixes releases. Examples: 1.0.0, 1.0.4, 3.2.1 etc... The relation between Bundle Version and iTunes connect is simple: whatever you use for your version in the Xcode, you is also in iTunes, so the user of your app can identify you app version easily - you just have to be consistent. Later you can introduce more granularity, e.g. build numbers.

EDIT: Important addition: your app can get rejected if you're inconsistent with numbering. More details here.

link|improve this answer
Doesn't answer the question. – Raffi Khatchadourian Mar 22 at 20:31
feedback

Your Answer

 
or
required, but never shown

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