Xcode “Build and Archive” from command line

前端 未结 20 1076
死守一世寂寞
死守一世寂寞 2020-11-22 13:52

Xcode 3.2 provides an awesome new feature under the Build menu, \"Build and Archive\" which generates an .ipa file suitable for Ad Hoc distribution. You can also open the O

20条回答
  •  难免孤独
    2020-11-22 14:16

    try xctool, it is a replacement for Apple's xcodebuild that makes it easier to build and test iOS and Mac products. It's especially helpful for continuous integration. It has a few extra features:

    1. Runs the same tests as Xcode.app.
    2. Structured output of build and test results.
    3. Human-friendly, ANSI-colored output.

    No.3 is extremely useful. I don't if anyone can read the console output of xcodebuild, I can't, usually it gave me one line with 5000+ characters. Even harder to read than a thesis paper.

    xctool: https://github.com/facebook/xctool

提交回复
热议问题