Building iOS applications using xcodebuild without codesign

后端 未结 4 1566
执笔经年
执笔经年 2020-12-02 07:12

We\'re building an app for another company. They hold the signing key and would rather not share it with us.

It should be possible to separate build and sign, but h

4条回答
  •  难免孤独
    2020-12-02 07:32

    In order to skip the code signing you can perform a manual build from the console like this:

    xcodebuild clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
    

    Additionally, use the -configuration, -target and -sdk parameters in order to define your build settings.

    Refer to this Stack Overflow answer in order to get a detailed description on how to disable code-signing inside Xcode.

提交回复
热议问题