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.

I'm finding it hard to hook up the new Facebook SDK properly. I followed this step-by-step guide and was very surprised by the fact that this version of the SDK requires an actual .pkg installation. Not only that, but the SDK needs to be referenced by the project (not copied into it). So what happens if someone checks out a working copy of the project and doesn't have the installation in the same exact relative path? Furthermore, I'm having difficulties configuring the SDK path so that it works even if the collaborators DO have the SDK installed in the same exact relative path (the SDK is not found and needs to be reattached for every commit).

This is a huge inconvenience and I was wondering if anyone ever tackled this problem successfully. I tried copying the resources into the project but no dice (doesn't build).

Thanks for your time and efforts.

share|improve this question

2 Answers

Actually, it IS possible to hook up Facebook SDK 3.1.1 from sources.

Just get the sources from https://github.com/facebook/facebook-ios-sdk, then add "src/" folder to your project. And you'll have to delete "tests" and "Package" folders, they are not necessary.

Other steps (adding frameworks, linker flags) should be done according to guide. Hope it helps

share|improve this answer
Thanks for your answer, will try this and get back to you on the results. – Stavash Nov 27 '12 at 7:35
Thanks, Nazar. It seems to be working. I find it disappointing that the new SDK code doesn't use ARC, but it's better than nothing... – Stavash Nov 27 '12 at 11:39
Seems like this has raised some issues with my collaborators. Everyone is getting a "Can't run on current device" error. – Stavash Nov 28 '12 at 7:17
strange, didn't face that issue. which version of iOS are you using? – Nazar Kanaev Nov 28 '12 at 8:57
iOS 6.0 on device and on Simulator – Stavash Nov 28 '12 at 9:47
show 3 more comments
up vote 0 down vote accepted

Figured out a solution: Add "~/Documents/FacebookSDK/ to the target's "Framework Search Paths" and also set "Always Search User Paths" to Yes.

share|improve this answer

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.