0

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

user82395214
  • 829
  • 14
  • 37

1 Answers1

3

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.

Paulw11
  • 108,386
  • 14
  • 159
  • 186