What should I change in info.plist when updating an app?

I see that there are: Bundle version string, short: 1.0 and Bundle version: 1.0

Should I change both to 1.1 or just one of them and which?

link|improve this question

53% accept rate
feedback

1 Answer

Both.

  • Bundle version is supposed to be a double (eg. 1.0, 1.01, 2.1).
  • Bundle version string, short needs to be a string (eg. 1.0r1, 1.01b1401, 2.1a);

So, in this case you probably just want to adjust them to 1.1.

Note that AFAIK, Apple only looks at Bundle version and compares it with the previous bundle (which will lead to a rejection if you're new Bundle version <= old Bundle version). You're fully responsible for updating the Bundle version string, short yourself!

link|improve this answer
thanks! I will set them both to 1.1 then – Wikiboo Aug 5 '11 at 13:04
You're welcome =)! I hope you're app gets approved fast =)! – Tim van Elsloo Aug 5 '11 at 13:06
feedback

Your Answer

 
or
required, but never shown

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