Xcode 'CodeSign error: code signing is required'

后端 未结 15 1670
离开以前
离开以前 2020-12-07 16:40

I\'ve been working on an iPhone project with iOS 4.0. I just downloaded Xcode 3.2.4 with iOS SDK 4.1 so that I can work with the updated iOS. Upon opening the project in the

15条回答
  •  孤城傲影
    2020-12-07 17:27

    Be sure you code sign on the line "any iOS SDK" and not "Debug/Distribution/Release"

    Here is exactly what I did :

    Code signing identity -> don't code sign
    * Debug -> don't code sign
    ** any iOS SDK -> [my developer profile]
    * Distribution -> don't code sign
    ** any iOS SDK -> [my AppStore profile]
    * Release -> don't code sign
    ** any iOS SDK -> [my AdHoc profile]

    When I put my profiles one level above (at Debug/Ditribution/Release), it doesn't work for some reason (bug ?).

    Hope it helps some of us !

提交回复
热议问题