Search code examples
xcodeios6

Bypassing code sign with xcode 4.5 for iOS6


We used to modify the SDKSetting.plist to allow the build of unsigned apps, by setting CODE_SIGNING_REQUIRED to NO.

But since xcode 4.5, this file seems encrypted (here is its path : /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/SDKSettings.plist).

Does somebody know how to build unsigned apps for iOS6?


Solution

  • sudo cp /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/SDKSettings.plist ~/Downloads
    
    sudo chmod 777 ~/Downloads/SDKSettings.plist
    
    • open ~/Downloads/SDKSettings.plist

    • Edit in the popup window of XCode

    sudo mv ~/Downloads/SDKSettings.plist /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/SDKSettings.plist
    
    • restart xcode