Xcode 不会签署应用程序
我对此几乎无计可施。我无法让 xcode 识别出它应该签署 @#$% 应用程序!我(认为)我的证书和配置文件设置正确。我已选择适当的目标,并使用基于设备的 SDK。该项目构建没有错误,但是当我查看构建日志时,在GenerateDSYMFile之后我希望看到ProcessingProductPackaging,但我没有看到。我也没有看到 CodeSign 任务。为什么 xcode 甚至不尝试对应用程序进行签名?
我正在使用 xcode 3.2.4。任何方向将不胜感激!
I'm almost at my wit's end with this. I can't get xcode to recognize that it's supposed to sign the @#$% app! I (think) I have my cert and provisioning file setup correctly. I've selected the appropriate target, and am using the Device Based SDK. The project builds without errors, but when I look at the Build Log, after GenerateDSYMFile I expect to see ProcessingProductPackaging, which I don't see. Nor to I see the CodeSign task. Why isn't xcode even attempting to sign the app?
I'm using xcode 3.2.4. Any direction would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道;如果 Xcode 无法签名,它通常会拒绝尝试构建。有一些关于编译后步骤的选项(在“部署”下);其中一些可能与代码签名有关。
如果失败,还有其他一些选择:
diff {MyApp,MyApp2}.xcodeproj/project.pbxproj
。 (令人烦恼的是,差异充满了可能会改变的 GUID...)I'm not sure; Xcode normally refuses to even attempt to build if it can't sign it. There are some options about post-compilation steps (under "Deployment"); some of them might relate to code-signing.
Failing that, some other options:
diff {MyApp,MyApp2}.xcodeproj/project.pbxproj
. (Annoyingly, the diff is full of GUIDs that will probably change...)首先,验证项目设置:
然后,验证目标设置:
然后,再次尝试构建。
First, verify the project settings:
Then, verify the target settings:
Then, try building again.