xcodebuild 一般有两种方式,一种为project(包含一个或者多个targets),一种为 workspace(包含一个或者多个scheme,scheme 控制targets如何被编译)官网给的描述如下:
xcodebuild [-project name.xcodeproj] [[-target targetname] … | -alltargets] [-configuration configurationname] [-sdk [sdkfullpath | sdkname]] [action …] [buildsetting=value …] [-userdefault=value …]
xcodebuild [-project name.xcodeproj] -scheme schemename [[-destination destinationspecifier] …] [-destination-timeout value] [-configuration configurationname] [-sdk [sdkfullpath | sdkname]] [action …] [buildsetting=value …] [-userdefault=value …]
xcodebuild -workspace name.xcworkspace -scheme schemename [[-destination destinationspecifier] …] [-destination-timeout value] [-configuration configurationname] [-sdk [sdkfullpath | sdkname]] [action …] [buildsetting=value …] [-userdefault=value …]
具体执行以project为例子:
1.进入 xxx.xcodeproj路径下,执行xcodebuild clean
2.获取工程项目信息
xcodebuild -list 显示project和target的列表,一般多个的时候取第一个;
3.编译,查看生成的ipa文件
方法一 使用xcodebuild和xcrun打包签名
1)xcodebuild -project xxx.xcodeproj -target xxx -configuration release/debug archive -archivePath xxx.xcarchive
如果未指定Configurations,默认为release
2)执行大约30分钟,会看到** BUILD SUCCEEDED **字样,生成.app文件 xcarchive
3)但是要安装到真机上,需要将该文件导出为ipa文件,这里使用exportArchive命令:
xcodebuild -exportArchive -archivePath xxx.xcarchive -exportPath xxx -exportOptionsPlist xxx/ExportOptions.plist
其中关键就是ExportOptions.plist 文件需要在之前通过xcode打包导出ipa时的文件夹中去copy一个出来放在当前工程目录中,然后将其拖入-exportOptionsPlist 后面即可。
try ~~~then a ipa build success~
网友评论