2018年9月6日
1.報錯
解決:
登錄:https://appleid.apple.com/account/manage 回答如上問題
如果不行調用如下命名
sudo gem install fastlane (可能會報錯,更新下gem源,, gem sources -a https://gems.ruby-china.com)
參考:https://github.com/Microsoft/app-store-vsts-extension/issues/89
2.fastlane init 一直卡在如下位置
解決:用sudo fastlane init
參考: https://github.com/fastlane/fastlane/issues/12500
效果:
2018年9月5日
1.fastlane上傳報如下錯誤
<html>
<head><title>504 Gateway Time-out</title></head>
<body bgcolor="white">
<center><h1>504 Gateway Time-out</h1></center>
<center>nginx</center>
</body>
</html>
解決:電腦翻墻解決
2018年2月8日
xcode9.1上傳appstore老是報錯
1.fastlane和ApplicationLoader 上傳報 "上傳到 App Store 時出錯。”
解決: xcode 9.1之后 要將.itmstransporter這個文件夾刪掉
參考: http://www.cocoachina.com/bbs/read.php?tid=1729353
2018年2月7日
1.更新最新版
sudo gem install fastlane
2017年8月27日
1.用fastlane上傳ios app (application loader也一樣)
報如下錯誤 :
“Cannot proceed with delivery: an existing transporter instance is currently uploading this package”
原因:token文件存在導致
解決 (切換到如下目錄,刪除里面的文件即可):
cd /Users/<username>/.itmstransporter/UploadTokens/
cd /Users/mac/.itmstransporter/UploadTokens
效果:
2017年12月12日
1.如果報錯誤
[19:00:28]: [Transporter Error Output]: description length:
原因:info.list顯示不全修改
Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCalendarsUsageDescription key with a string value explaining to the user how the app uses this data.
Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSBluetoothPeripheralUsageDescription key with a string value explaining to the user how the app uses this data.
Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSSpeechRecognitionUsageDescription key with a string value explaining to the user how the app uses this data.
修改:
參考
https://github.com/fastlane/fastlane/issues/11026
2017年10月9日
1.報錯[18:21:41]: Could not start delivery: all transports failed diagnostics
Return status of iTunes Transporter was 1: Could not start delivery: all transports failed diagnostics
The call to the iTMSTransporter completed with a non-zero exit status: 1. This indicates a failure.
2.原因應該是服務器網絡相關問題,可能和電腦翻墻有關。
因為直接用工具application loader上傳是可以的。
3.解決
DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS="-t DAV" fastlane qqhl_release
參考:
https://github.com/fastlane/fastlane/issues/4544#issuecomment-217519255
效果:
如果您發現本文對你有所幫助,如果您認為其他人也可能受益,請把它分享出去。