捆绑版1必须比以前上传的版本高
当我尝试在新的Apple Store帐户上上传新游戏构建时,我遇到了这种错误,尽管我尝试了多次:
这是新帐户,我创建并上传了我的第一个游戏构建。
在这种情况下该怎么办?
When I try to upload new game build at my new Apple Store account, I was getting this kind of error though I have tried multiple times:
Let me show you TestFlight section of my account:
This is new account, I have created and uploading my first game build.
What to do in this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在Xcode中,您应该转到
runner(targets)=>常规选项卡
并增加版本&构建
例如,如果
版本= 1.0.0
您可以将其更新为版本= 2.0.0
如果
build = 1
您可以将其更新为build = 2
In Xcode, you should go to
Runner (Targets) => General Tab
and increaseVersion & Build
For example, if
Version = 1.0.0
you can update it toVersion = 2.0.0
and if
Build = 1
you can update it toBuild = 2
例如,在pubspec.yaml中更新版本,例如更改“版本:1.0.0+1” “ ”版本:1.0.0+2“ 。然后运行
flutter构建IPA
以生成IPA文件。构建后,打开 Transporter ,上传.ipa
文件,然后提交以进行测试范围测试。Update the version in pubspec.yaml, for example, changing "version: 1.0.0+1" to "version: 1.0.0+2". Then run
flutter build ipa
to generate the IPA file. Once built, open Transporter, upload the.ipa
file, and submit it for TestFlight testing.我已经注意到,Apple也有很少的尝试 - 尽管上传的构建未显示在帐户中,但不允许我再次上传相同数量的构建号码。我尝试使用版本1.0(1),版本1.0(2)和一次时间版本1.0(3)由于互联网连接而失败,所以最后我获得了1.0(4)版本,
这是我的观点的屏幕截图:

我希望这个答复对其他人有用。
I have noticed that few failed attempts Apple counted too -- Though uploaded builds not showing in the account but it is not allowing me to upload the same number of build number again. I have tried with Version 1.0(1), Version 1.0(2) and one time Version 1.0(3) get failed because of internet connection lose so at last I got success with Version 1.0(4)
Here is the screenshot of my point:

I hope this reply become useful to other people.