Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We've just updated our Facebook SDK for iOS to 3.1. Facebook SDK 3.0.8 didn't run on iOS6, now that we have upgraded to 3.1, it runs on iOS 6, but crashes under iOS 5.x.

because of AdSupport.framework app crashes on iOS 5.x instantly after starting with the following error:

dyld: Library not loaded: /System/Library/Frameworks/AdSupport.framework/AdSupport

Referenced from: /Volumes/Macintosh HD/Users/dmitrybaranov/Library/Application Support/iPhone Simulator/5.0/Applications/D6A93996-1E58-48A5-A457-DBC4FCCEE0EB/app.app/app
        
Reason: image not found
(lldb)

Did anybody face that problem? Is there a problem on Facebook's side and there guys are working on fixing this?

Or are we doing something wrong?

share|improve this question

2 Answers

up vote 50 down vote accepted

Did you set the frameworks to be optional? When you are adding AdSupport.framework, Social.framework, and Accounts.framework, there is drop down menu to the right that you can select between "Required" and "Optional". See a picture example here: Link

Another thing to check is in your Project's "Build Settings" that 'Base SDK' is 6.0 and 'iOS Deployment Target' is iOS 4.3.

I'm able to build FB SDK 3.1 on my iOS 5.1 with these settings.

share|improve this answer
thank you very much.. i was about to go back to Xcode 4.3 and FBSDK 3.0.. you saved me a lot of trouble.. – lukya Sep 27 '12 at 0:55
Thanks - actually we should update the documentation on developers.facebook.com/docs/getting-started/… to reflect this too – James Pearce Sep 27 '12 at 7:09
1  
setting all 3 frameworks to optional worked for me. thank you. – mtb Oct 1 '12 at 16:25
2  
While setting the libraries to "optional" will fix the specified problem, if you are already using "Accounts.framework" as a required framework (because you are doing Twitter stuff too, for example), then you will end up with another FB error: "Symbol not found: _ACFacebookAppIdKey". This is apparently known to FB (developers.facebridge.net/bugs/…) but the recommended solution clearly won't work for everyone. – tomo Oct 31 '12 at 16:57
1  
This doesn't work for me! I've set all of the three frameworks to optional, Base SDK is 6.0, Deployment target is 5.1 and architectures are armv7 and armv7s and I keep getting the error about adSupport framework not found! What should I do? – Martin Herman Nov 21 '12 at 20:26
show 2 more comments

If you're targeting iOS versions less than 6.0, you'll need to make AdSupport.framework, Social.framework, and Accounts.framework optionally-linked.

Please have a look at the attached screenshot.enter image description here

Cheers...!!!

share|improve this answer
This works for me, iOS5.1.1 and FB SDK 3.1. Thanks for showing it clearly with a screencap. – Rocotilos Apr 15 at 12:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.