altool是什么
您可以用altool:Application Loader的命令行工具来验证并上传您的应用程序二进制文件到App Store
altool用法
altool工具路径
在自己的xcode安装目录下:
/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Verions/A/Support/altool
在~/.bash_profile
中设置别名,以省去每次输入这么长一串路径的麻烦
如图:
设置别名:
alias altool='/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Versions/A/Support/altool'
立即应用:source ~/.bash_profile
然后就可以使用命令:altool -h
查看altool的用法
主要用法
如图所示:
altool主要有两条命令
验证ipa
altool --validate-app -f file -t platform -u username [-p password]
上传ipa
altool --upload-app -f file -t platform -u username -p password
eg:
altool --upload-app -f ipa的存放路径 -t 平台(ios) -u 开发者账号 -p 开发者账号对应的密码
网友评论