CFBundleVersion must be higher than previous version

前端 未结 10 2335
南旧
南旧 2020-12-01 09:13

I\'m submitting an update to one of my apps. I\'ve done this dozens of times with the many different apps I\'ve developed, but this one is failing for some weird reason. I a

相关标签:
10条回答
  • 2020-12-01 09:29

    If above answers don't fix your problem, Please make sure that the version in Xcode must be same to the version that you have created in Itunes connect.

    In my case, on itunes connect, version was 1.38 but version was 1.3.8 in Xcode. Once I changed version to 1.38 in Xcode, issue was resolved.

    0 讨论(0)
  • 2020-12-01 09:30

    Increasing the CFBundleShortVersionString or "Bundle versions string, short" did the Job for me.

    0 讨论(0)
  • 2020-12-01 09:31

    FYI. Apple thinks 1.11 > 1.2, so if you are going from 1.11 to 1.2 you need to go all the way to 1.20.

    Enjoy.

    0 讨论(0)
  • 2020-12-01 09:43

    My problem was that I tried from 1.9.12 to 1.9.2... if you think about it 1.9.2 its actually 1.9.02, so if you set 1.9.20 that would solve the problem.

    0 讨论(0)
  • 2020-12-01 09:44

    Same thing happened to me. My current App Store version was 2.03. I attempted to upload 2.1. All I had to do was change it to 2.10 and it worked.

    0 讨论(0)
  • 2020-12-01 09:45

    It turns out that I had some problem in my original submission which caused the user-visible version to be "1.0" but the internal bundle version to be "1.2". So I changed my new version to be 1.3 and 1.3 and the submission worked.

    enter image description here

    0 讨论(0)
提交回复
热议问题