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 am trying to use the facebook sdk within my project, however keep receiving the following error:

The container 'Android Dependencies' references non existing library 'facebook-android-sdk\facebook\bin\com_facebook_android.jar'

Has anyone experienced/resolved this problem?

Thanks

The errors are shown below:

The container 'Android Dependencies' references non existing library 'C:\Users\Mandip\facebook-android-sdk\facebook\bin\com_facebook_android.jar' The method onClick(View) of type new View.OnClickListener(){} must override a superclass method FbDialog.java /com_facebook_android/src/com/facebook/android line 101 Java Problem

The method onServiceConnected(ComponentName, IBinder) of type Facebook.TokenRefreshServiceConnection must override a superclass method Facebook.java /com_facebook_android/src/com/facebook/android line 575

The method onServiceDisconnected(ComponentName) of type Facebook.TokenRefreshServiceConnection must override a superclass method Facebook.java /com_facebook_android/src/com/facebook/android line 581

The project cannot be built until build path errors are resolved

share|improve this question
1  
check your project setting... I am sure you can fix this... Or may be build automatic is off... – ValayPatel Apr 20 '12 at 14:25
I have checked the 'facebook-android-sdk\facebook\bin\com_facebook_android.jar' the jar file doesn't exist, I tried downloading the SDK on several attempts and still the same error – user983965 Apr 20 '12 at 14:29
Did you check Android Properties of your project..?? below android build target version you can find Is Library check box... if that is not checked than check it.. Let me know if this is blocking you?? – ValayPatel Apr 20 '12 at 14:38

3 Answers

up vote 4 down vote accepted

Try this way

how to make Library

share|improve this answer
Thanks Valay, it appears the SDK has errors within the java code, I have pasted the error above. In addtion, I have tried Is Library to no success. – user983965 Apr 20 '12 at 14:44

Is there a bin folder in the com_facebook_android project? If not, the Facebook SDK wasn't built. Go to Project->Build Automatically and enable it.

share|improve this answer
2  
I had the same problem and this solved it! – Mangusto Sep 19 '12 at 8:24
The same thing was happened with me. while I was trying build my project the bin folder from sdk becomes empty.So you must have re-build sdk again. – Umesh Jan 12 at 10:17

In my case the APK Builder build command was missing from the Eclipse .project file:

<buildCommand>
    <name>com.android.ide.eclipse.adt.ApkBuilder</name>
    <arguments/>
</buildCommand>
share|improve this answer
1  
This worked for me, thank you! – sprogcoder Sep 19 '12 at 20:50

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.