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
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.
CODE_SIGNING_ALLOWED="NO"