codesign failed: resource fork, Finder information, or similar detritus not allowed
On 14 May 2018 in TechAfter updating AdscendMedia SDK in one of our app, when building the app, stumbled upon this error:
<project_folder>/Frameworks/AdscendMedia.framework: replacing existing signature <project_folder>/Frameworks/AdscendMedia.framework: resource fork, Finder information, or similar detritus not allowed Command /usr/bin/codesign failed with exit code 1
Found the solution here:Â https://developer.apple.com/library/content/qa/qa1940/_index.html
First, find files inside SDK framework folder which have extended attribute containing resource fork or Finder info:
cd <project_folder>/Frameworks xattr -lr AdscendMedia.framework/
If got files, then delete them:
xattr -cr AdscendMedia.framework/
Related posts:
-
Ti.Network.registerForPushNotifications no response
-
Titanium iOS “build” is an unrecognized command
-
iOS screen size
-
Check if iOS app is connected to VPN
-
Titanium app hex color value with alpha channel
-
Add custom framework to Titanium iOS module
-
Titanium ListView
-
Load nib file in Titanium module iOS
-
Update iOS Titanium module SDK version
-
Titanium iOS builder script
Filed under Tech with tags Codesign, iOS
Leave a Reply