前言
最近上传IPA包到App Store,真是痛苦,一直等都上不去:
那么有没有更好的方法呢?有的,那么就是用iTMSTransporter命令行上传,亲测上传速度非常快!
一、下载iTMSTransporter
2、下载后双击安装
3、默认安装地址在
/usr/local/itms/bin
4、打开Finder–前往–前往文件夹
二、生成专用密码
1、登录你的APPID
2、生成专用密码
三、生成plist文件
1、导出IPA文件
2、生成plist文件
cd到你的IPA目录执行
xcrun swinfo -f xxx.ipa -o AppStoreInfo.plist -prettyprint true --plistFormat binary
3、生成后把IPA文件和plist文件放到iTMSTransporter目录下,如图所示
四、上传IPA
1、在终端执行命令:
/usr/local/itms/bin/iTMSTransporter -assetFile xxx.ipa -u <你的APPID账号> -p <你的专用密码> -m upload -assetDescription AppStoreInfo.plist
2、上传过程,当你看到这样的进度后,说明正在上传了
3、上传成功
五、后记
1、其实iTMSTransporter还是很强大的,还可以在Windows上面上传IPA文件,有时间介绍一下,其实流程差不多,命令也是差不多。
2、参考链接如下:
iTMSTransporter官方链接