How do you fix “code object is not signed at all In subcomponent:” in Xcode 6, Mac OS X Yosemite or Mavericks?

后端 未结 9 1273
[愿得一人]
[愿得一人] 2021-01-07 16:56

When compiling my application I\'m getting the following error:

CodeSign /Users/pupeno/Library/Developer/Xcode/DerivedData/ProjectX-cynmgyozflnwbpamwnpsnhgsh         


        
相关标签:
9条回答
  • 2021-01-07 17:21

    For All who still are facing this issue, Please make sure 'Product Name' in build setting matches with 'Executable file' set in info.plist.

    Generally when we duplicate exiting code, we simply change either product name or Executable file, and this mismatched creates a issue.

    0 讨论(0)
  • 2021-01-07 17:21

    for me, one of the frameworks I was including, had another of the frameworks marked as "embed and sign"... which you can't do... only the app should be doing that. marking the grandchild framework as "do not embed" in the child framework, removed this issue.

    0 讨论(0)
  • 2021-01-07 17:30

    The problem was that the Framework, Paddle.framework, became corrupt. The symlinks were resolved to the files they were pointed to, so, compilation worked just fine, but signing didn't.

    Re-downloading the framework and copying it into the project fixed the problem.

    0 讨论(0)
提交回复
热议问题