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
效果:
如果您发现本文对你有所帮助,如果您认为其他人也可能受益,请把它分享出去。