如何快速打包ipa(转)

cd xx/xx/xx

先进入项目文件夹中

xcodebuild -project test.xcodeproj -target test -configuration Release

此行命令的意思是将Toyun这个工程targets对应的也是Toyun
,打包成Release版本。

xcrun -sdk iphoneos -v PackageApplication ./build/Release-iphoneos/test.app -o ~/Desktop/test.ipa

此行命令的意思为,将Release-iphoneos文件夹下的Toyun.app
文件转换为Toyun.ipa文件并且放在桌面上

你可能感兴趣的:(如何快速打包ipa(转))