I am trying to link the Facebook to my project via Sharekit. I followed the steps on the install wiki but still face issues.
It gives me this error now:
'FacebookSDK.h' file cannot be found
I am trying to link the Facebook to my project via Sharekit. I followed the steps on the install wiki but still face issues.
It gives me this error now:
'FacebookSDK.h' file cannot be found
As it is said on GitHub official page this should work:
For me worked reverting to previous commit:
git checkout -b beforeTargetCleanup 400df71204f48c3367982be2c1dc3158e2e23476
Fixed in 52cb63ed784532d0913a264f4a93843b95737392
commit.
I know this is an older question, but I just ran into this today and none of the solutions I found online worked, including following steps 2-4 in @Nekto's answer from Sharekit. I tried a couple of things and this is what worked for me.
I went into SHKFacebook.m and changed the FacebookSDK.h import from #import <FacebookSDK.h>
to "#import <FacebookSDK.h>"
then ran my project on the simulator. After it ran once I was able to change it back to #import <FacebookSDK.h>
and it still works.