xcodemacoscode-signingcodesignbuild-settings

How can I skip code signing for development builds in Xcode?


Whenever I build my Xcode project, after compiling all my code, it takes forever to finish "signing product." (I believe it's because the project includes about 200 MB of resources that need signing.) I would like to skip the code signing during development, so the build can finish faster. How can I do this?


Solution

  • To turn the code signing off, go to your project and target "Build Settings", search for "Code Signing Identity" change its value to "Don't Code Sign" in both of them.

    To make this effective you need to change this value in the Project and all of the Targets separately.