Ignoring file SDWebImage.framework, missing required architecture x86_64
arm64, ios, sdwebimage, x86-64, xcode
Solution
As of now, this is fixed in the master branch, but it is not included in the latest .framework release. What I did to make it work was this:
1) Download the latest release from the master branch (currently https://github.com/rs/SDWebImage/releases/tag/3.5.3)
2) Remove SDWebImage.framework from my project.
3) Copy the source files from the zip (Everything inside SDWebImage + the files NSData+ImageContentType.h and NSData+ImageContentType.m) into my project.
4) Replace the header includes of to "SDWebImage.../...h"
Might be a better way to do this, but this solved the problem for me. As I understand it,64-bit support will be added to the next proper release.
Problem
I've installed SDWebImage in my Xcode 5 / iOS 7 project, but building gives me the following issue which will result in a fatal exception: ``` ignoring file SDWebImage.framework/SDWebImage, missing required architecture x86_64 in file SDWebImage.framework/SDWebImage ``` SDWebImage seems to be cause this issue with Google Analytics, and the best resolution seems to be cutting arm64 by using Standard architectures (armv7, armv7s) in one's build settings. I don't really want to do that, and SDWebImage had this issue blaming libwebp which suggested falling back to framework 3.2 temporarily. I'm running framework 3.5 already. Does anyone know how to resolve this, or am I stuck with these work-arounds? (Thanks!)