通过Shell脚本生成IPA

Posted 鸡肉肠火锅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过Shell脚本生成IPA相关的知识,希望对你有一定的参考价值。

通过Shell脚本生成IPA,本文内容有待实际操作后验证。

方案一:xcodebuild -archivePath

# 清理
xcodebuild clean -workspace xgj.xcworkspace -scheme xgj

# 构建
xcodebuild -archivePath xgj.xcarchive -workspace xgj.xcworkspace -sdk iphoneos -scheme xgj -configuration "Release.Adhoc" archive
xcodebuild -archivePath xgj.xcarchive    -workspace xgj.xcworkspace -sdk iphoneos -scheme xgj -configuration "Debug.Adhoc" archive 

# 打包
xcodebuild -exportArchive -exportFormat IPA -archivePath xgj.xcarchive -exportPath xgj-`date ‘+%Y%m%d-%H%M%S‘`.Adhoc.ipa -exportProvisioningProfile "XC Ad Hoc: com.mengying.xgj"





以上是关于通过Shell脚本生成IPA的主要内容,如果未能解决你的问题,请参考以下文章

使用shell脚本生成数据库markdown文档

shell脚本怎么生成运行日志

如何延迟 shell 脚本中的命令替换?

shell脚本中spool生成excel文件写法

CentOS7 uwsgi重启(通过shell脚本获取进程号并kill)

如何在Linux中执行Shell脚本?