user82395214
user82395214

Reputation: 929

Error when uploading archive to App Store: The bundle is invalid

I'm not sure why I'm getting this error. My info.plist says 1.2 and the app store is ready for a 1.2.

error

1.2

app store

Upvotes: 0

Views: 934

Answers (1)

Paulw11
Paulw11

Reputation: 115051

iTunesConnect interprets each sequence of digits in the version as an independent integer, it doesn't look at the number as a decimal.

  • 1.15 is version 1, subversion 15

  • 1.2 is version 1, subversion 2

2 is less than 15, so you cannot release 1.2 after you have released 1.15 (which perhaps you intended to be 1.1.5)

You can release 1.20 since 20 is greater than 15.

Upvotes: 3

Related Questions