3

I am receiving error while running old project in Xcode 8. Same project running completely flow less in Xcode 7.

I also apply solution mentioned in following links

  1. Code Sign Error in macOS Sierra Xcode 8 : resource fork, Finder information, or similar detritus not allowed

  2. Code Signing Error Whenever I try replacing stock files in new SceneKit application

But not able to resole it. I also created new certificates, Bundle Identifier and respective provisioning profiles but same result.

enter image description here

Community
  • 1
  • 1
chetu
  • 428
  • 1
  • 7
  • 18

2 Answers2

9

I solved the problem using solution 1. in the link. You can refer same for solution.

Guru
  • 21,292
  • 9
  • 61
  • 98
ertans
  • 91
  • 3
2

When running into this periodically during development, as a temporary workaround you can disable code signing then remove the extended attributes one time before distribution to save time. Add the user defined build setting at the target:

CODE_SIGNING_ALLOWED = No 
Bobjt
  • 3,910
  • 1
  • 27
  • 29
  • This should be upvoted. Nothing else worked in my case. I was compiling a bundle that used for testing purposes and it doesn't need to be signed. – Nikolozi Oct 09 '19 at 10:23