ios命令行自助打包-使用xcodebuild和xcrun打包签名

# 使用xcodebuildxcrun打包签名

xcodebuild -project "$project_name" -target "$target_name" -configuration "$configuration" -sdk iphoneos build CODE_SIGN_IDENTITY="$codeSignIdentity" PROVISIONING_PROFILE="$provision_UUID"


xcrun -sdk iphoneos -v PackageApplication ./build/Release-iphoneos/"$target_name".app -o "$ipa_path"


参考链接:

http://www.jianshu.com/p/1229476fbce4

http://blog.csdn.net/safiri/article/details/51208450

http://magicalboy.com/xcodebuild-usage/



你可能感兴趣的:(OC笔记)