X-Code 报错:resource fork, Finder information, or similar detritus not allowed解决方案

解决上述升级引起的调试问题

方法一:

利用终端cd到工程根目录。然后依次输入以下三个指令,一定要等前一直令执行完再执行下一个:

find.-type f-name'*.jpeg'-execxattr-c{}\;

find.-type f-name'*.png'-execxattr-c{}\;

find.-type f-name'*.tif'-execxattr-c{}\;

包括分号都要输进去,然后在X-code中Alt+CLean一下,再重新build

方法二:

直接找出携带错误信息的文件进行修复

cd到工程根目录,执行命令

ls-alR@.>kundapura.txt

这会在你的根目录下创建一个kundapura.txt,然后打开文件搜索com.apple.FinderInfo并且清理掉他们,你可以这么做

xattr-c

例如:xattr -c guru.png

最后,Alt+CLean,Build,完成

原文见

http://stackoverflow.com/questions/39652867/code-sign-error-in-macos-sierra-xcode-8-resource-fork-finder-information-or


你可能感兴趣的:(X-Code 报错:resource fork, Finder information, or similar detritus not allowed解决方案)