美文网首页
命令行生成 .ipa

命令行生成 .ipa

作者: 会飞的大西瓜v | 来源:发表于2018-06-28 15:36 被阅读16次
    参考博客
    http://liumh.com/2015/11/25/ios-auto-archive-ipa/#overview-about-xcodebuild
    

    xcode官方命令行

    • 官方文档资料SunXiaoSong:~ Gogo$ man xcodebuild

    举个例子

    1. SunXiaoSong:~ Gogo$ xcodebuild -project YiShopSeller.xcodeproj -target YiShopSeller -configuration Release
    • build 成功,会看到 ** BUILD SUCCEEDED ** 字样,且在终端会打印出这次 build 的签名信息
    • 在该目录下会多出一个 build 目录,该目录下有 Release-iphoneos 和 TestImg.build 文件,根据我们 build -configuration 配置的参数不同,Release-iphoneos 的文件名会不同
    1. xcrun -sdk iphoneos -v PackageApplication ./build/Release-iphoneos/YiShopSeller.app -o ~/Desktop/YiShopSeller.ipa
    • 执行这一步如果提示 “error: unable to find utility "PackageApplication", not a developer tool or in PATH” 提示缺少 PackageApplication 这个东西
    • 下载 https://pan.baidu.com/s/1jH4jnGM 放到这个目录下 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/ 并终端执行下面这两条命令
    • 1.SunXiaoSong:~ Gogo$ sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer/
    • 2.SunXiaoSong:~ Gogo$ chmod +x /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/PackageApplication

    3.从新执行xcrun 桌面就会生成 XXX.ipa

    相关文章

      网友评论

          本文标题:命令行生成 .ipa

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