Building iOS applications using xcodebuild without codesign

后端 未结 4 1548
执笔经年
执笔经年 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:25

    To completely prevent code signing with Xcode 7, I used all of the following options:

    CODE_SIGN_IDENTITY=""
    CODE_SIGNING_REQUIRED="NO"
    CODE_SIGN_ENTITLEMENTS=""
    CODE_SIGNING_ALLOWED="NO"
    

    The final option, CODE_SIGNING_ALLOWED="NO" seemed to do the trick.

提交回复
热议问题