iOS 自动化打包(xcodebuild)

为了方便自己,节约出时间。参考了很多大佬的文章,最后决定自己写一个,过程中还是踩到很多坑,所以在此写下...

首先,要想学会自动化打包,就要先了解自动化打包所需要用到的工具及打包过程。

工具

xcodebuild,是苹果发布自动构建的工具

打包命令

在打包的过程中 实际使用到的命令 一共也就三个

xcodebuild clean 清理工程

xcodebuild archive 编译打包文件

xcodebuild -exportArchive 导出IPA包

其它命令

man xcodebuild 可以看到xcodebuild常用命令

xcodebuild --help 可以看到xcodebuild的使用实例

xcodebuild -list 可以看到工程的Target ,scheme,configuration配置参数

open ~/Library/MobileDevice/Provisioning\ Profiles 可以查看描述文件

/usr/bin/security cms -D -i xxx.mobileprovision 可以查看描述文件具体信息

Demo

图一中是一个简单的demo,包括了项目目录(build.sh、exprotOptionsPlist.plist)及2个自动化打包成功后的文件,这里本人使用的是个人开发者账号

图一

build.sh文件代码

#!bin/sh

echo "开始工程清理"
# ${workspace} 工程中,.xcworkspace的文件名字
# ${scheme} 当前要编译运行的scheme
# configuration ${Debug或者Release} 当前是要以Debug运行还是以Release运行
# -quiet 忽略警告提示打印
# -UseNewBuildSystem=NO 是否使用新的build系统
xcodebuild clean -workspace "SetUpConfiguartion.xcworkspace" -scheme "SetUpConfiguartion" -configuration Release -UseNewBuildSystem=NO
echo "工程清理完成"

echo "开始工程打包"
#${workspace} 工程中,.xcworkspace的文件名字
#${scheme} 当前要编译运行的scheme
#configuration ${Debug或者Release} 当前是要以Debug运行还是以Release运行
#-archive_path 导出.xcarchive文件的存放路径
#CODE_SIGN_IDENTITY 证书文件名
#PROVISIONING_PROFILE 运行文件UUID
xcodebuild archive -workspace "SetUpConfiguartion.xcworkspace" -scheme "SetUpConfiguartion" -configuration Release -archivePath "~/Desktop/Configuartion/SetUpConfiguartion"
echo "工程打包完成"

echo "开始导出IPA包"
#xcodebuild -exportArchive -archivePath archive文件的地址.xcarchive
#                          -exportPath 导出的ipa文件夹地址
#                          -exportOptionsPlist exprotOptionsPlist.plist(前面路径会自动补全)
#                          CODE_SIGN_IDENTITY=证书
#                          PROVISIONING_PROFILE=描述文件UUID
xcodebuild -exportArchive -archivePath "~/Desktop/Configuartion/SetUpConfiguartion.xcarchive" -exportPath "~/Desktop/Configuartion/SetUpConfiguartion.ipa" -exportOptionsPlist "exprotOptionsPlist.plist"

exprotOptionsPlist.plist代码

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>teamID</key>
    <string>53CCQ5M733</string>
    <key>method</key>
    <string>ad-hoc</string>
    <key>compileBitcode</key>
    <false/>
</dict>
</plist>

执行命令

项目路径下 终端输入sh ./build.sh

遇到的问题

** ARCHIVE FAILED **

The following build commands failed:
    Ld /Users/yq/Library/Developer/Xcode/DerivedData/SetUpConfiguartion-fljdbuqzrprylkdpzcjpkqnprygz/Build/Intermediates.noindex/ArchiveIntermediates/SetUpConfiguartion/IntermediateBuildFilesPath/SetUpConfiguartion.build/Release-iphoneos/SetUpConfiguartion.build/Objects-normal/armv7/Binary/SetUpConfiguartion normal armv7
(1 failure)
工程打包完成
开始导出IPA包
error: archive not found at path '/Users/yq/Desktop/Configuartion/SetUpConfiguartion.xcarchive'
** EXPORT FAILED **

解决方法:
pod install (normal arm64)

** ARCHIVE SUCCEEDED **

工程打包完成
开始导出IPA包
error: Couldn't load -exportOptionsPlist: The file “exprotOptionsPlist.plist” couldn’t be opened because there is no such file.

Error Domain=NSCocoaErrorDomain Code=260 "The file “exprotOptionsPlist.plist” couldn’t be opened because there is no such file." UserInfo={NSFilePath=/Users/yq/Desktop/Configuartion/SetUpConfiguartion/~/Desktop/Configuartion/SetUpConfiguartion/exprotOptionsPlist.plist, NSUnderlyingError=0x7fd56ecc6b30 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}

** EXPORT FAILED **

解决方法:NSFilePath=/Users/yq/Desktop/Configuartion/SetUpConfiguartion/~/Desktop/Configuartion/SetUpConfiguartion/exprotOptionsPlist.plist
这里提示路径错误
xcodebuild -exportArchive 中的 -exportOptionsPlist 路径不需要写全,会自动补全,写名称就可以了

** ARCHIVE SUCCEEDED **

工程打包完成
开始导出IPA包
2020-05-09 11:33:57.289 xcodebuild[20203:817143] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/_6/t0xhscld37g6mb17jt4cv2sw0000gn/T/SetUpConfiguartion_2020-05-09_11-33-57.287.xcdistributionlogs'.
error: exportArchive: The data couldn’t be read because it isn’t in the correct format.

Error Domain=NSCocoaErrorDomain Code=3840 "No value." UserInfo={NSDebugDescription=No value., NSFilePath=/var/folders/_6/t0xhscld37g6mb17jt4cv2sw0000gn/T/ipatool-json-filepath-~~~EygMH8}

** EXPORT FAILED **

解决方法:
首页可以前往文件 /var/folders/_6/t0xhscld37g6mb17jt4cv2sw0000gn/T/SetUpConfiguartion_2020-05-09_11-33-57.287.xcdistributionlogs 中查看日志找到具体原因

Error Domain=NSCocoaErrorDomain Code=3840 "No value."
检查下
<key>compileBitcode</key>
<false/>

** ARCHIVE FAILED **


The following build commands failed:
    CompileStoryboard /Users/yq/Desktop/Configuartion/SetUpConfiguartion/SetUpConfiguartion/Base.lproj/LaunchScreen.storyboard
(1 failure)
工程打包完成
开始导出IPA包
error: archive not found at path '/Users/yq/Desktop/Configuartion/SetUpConfiguartion.xcarchive'
** EXPORT FAILED **

解决方案:
删除LaunchScreen.storyboard文件,改为Assets.xcassets中增加LaunchImage.launchimage

学习博客

https://blog.csdn.net/ioszhanghui/article/details/91375973
https://www.jianshu.com/p/3f43370437d2
https://blog.csdn.net/ioszhanghui/article/details/91046928

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,189评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,577评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,857评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,703评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,705评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,620评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,995评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,656评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,898评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,639评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,720评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,395评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,982评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,953评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,195评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,907评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,472评论 2 342