我在testflight上使用pilot遇到了问题。我当前正在显示此错误:
ERROR ITMS-90054: "This bundle is invalid. The bundle identifier cannot be changed from the previous version. If you want to change your bundle identifier, you will need to create a new application in iTunes Connect."
ERROR ITMS-90186: "Invalid Pre-Release Train. The train version '10.4.0' is closed for new build submissions"
ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [10.4.0] in the Info.plist file must contain a higher version than that of the previously approved version [10.4.0]."
[19:06:19]: ERROR ITMS-90054: "This bundle is invalid. The bundle identifier cannot be changed from the previous version. If you want to change your bundle identifier, you will need to create a new application in iTunes Connect."
ERROR ITMS-90186: "Invalid Pre-Release Train. The train version '10.4.0' is closed for new build submissions"
ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [10.4.0] in the Info.plist file must contain a higher version than that of the previously approved version [10.4.0]."
Return status of iTunes Transporter was 1: ERROR ITMS-90054: "This bundle is invalid. The bundle identifier cannot be changed from the previous version. If you want to change your bundle identifier, you will need to crea\nERROR ITMS-90186: "Invalid Pre-Release Train. The train version '10.4.0' is closed for new build submissions\nERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [10.4.0] in the Info.plist file must contain a higher version than that of the previously approved version [10.4.0]."
The call to the iTMSTransporter completed with a non-zero exit status: 1. This indicates a failure.快速文件中的代码如下所示:
lane :beta do
# match(type: "appstore") # more information: https://codesigning.guide
gym(scheme: "MyApp UAT", output_directory: build_folder)
puts "Uploading latest build to TestFlight..."
pilot
# sh "your_script.sh"
# You can also use other beta testing services here (run `fastlane actions`)
end我的项目中有许多目标,MyApp UAT就是其中之一( dev目标)。你知道我可能做错了什么吗?我已经尝试在MyApp UAT目标中增加内部版本号,但这似乎没有什么不同。
scheme是设定目标的正确地方吗?
发布于 2017-09-05 15:58:07
您正在尝试上载已上载的版本。
您正在尝试某种类型的覆盖不允许的相同版本
错误ITMS-90186:“无效的预发布系列。系列版本'10.4.0‘已关闭,无法提交新的构建”
错误ITMS-90062:“此捆绑包无效。Info.plist文件中的密钥CFBundleShortVersionString 10.4.0的值必须包含比先前批准的10.4.0版本更高的版本。”
将您的BuildNumber或versionName上传到您的项目中,然后重试。
https://stackoverflow.com/questions/40958025
复制相似问题