美文网首页
iOS命令行打包

iOS命令行打包

作者: ZhangYanSong | 来源:发表于2017-09-27 15:48 被阅读0次

    (1)清除

    xcodebuild clean -project Desktop/XXX/XXX.xcodeproj/ -configuration Release -alltargets

    或:

    xcodebuild clean -workspace Desktop/XXX/XXX.xcworkspace/ -configuration Release -scheme XXX

    (2)构建

    xcodebuild archive -project XXX.xcodeproj/ -scheme XXX -archivePath /Users/zhang/Desktop/XXX.xcarchive -configuration Release

    或:

    xcodebuild archive -workspace Desktop/XXX/XXX.xcworkspace/ -scheme XXX -archivePath /Users/zhang/Desktop/XXX.xcarchive -configuration Release

    (3)打包

    xcodebuild -exportArchive -archivePath Desktop/XXX.xcarchive/ -exportPath Desktop/ -exportOptionsPlist Desktop/agents_packing/enterprise.plist

    plist的内容:

    其中的method可以根据你要打的包的类型填不同的值, 我的是企业版的包, 所以是enterprise

    相关文章

      网友评论

          本文标题:iOS命令行打包

          本文链接:https://www.haomeiwen.com/subject/pipuextx.html