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.

Help needed!!!! Stuck for 2 weeks on this and help needed.

I've recently imported the facebook sdk for android and its projects into my workspace. It shows up errors and the problems:

Archive for required library: '/home/Documents/facebook-android-sdk-3.0.2.b/facebook/libs/._android-support-v4.jar' in project 'FacebookSDK' cannot be read or is not a valid ZIP file

And the samples get errors along the line of:

The container 'Android Dependencies' references non existing library '/home/Documents/facebook-android-sdk-3.0.2.b/facebook/bin/facebooksdk.jar'

The things I have done following the other discussions without any success are

cleaned project

set the Facebook SDK as library

looked at the build path section and added external jar consisting of facebook/libs

imported fb sdk like 20 times and into different folders.

made sure my java compiler was 1.6

HELP would be very greatly appreciated!!!!

share|improve this question
1  
'/home/Documents/facebook-android-sdk-3.0.2.b/facebook/libs/._android-support-v4‌​.jar This path looks weird. Why the "._" before your file? – TanjaV Dec 12 '12 at 14:06
Check which directory you're downloading to – TanjaV Dec 12 '12 at 14:09
i put the Facebook root directory next to the android ADT directory (which contains my SDK and eclipse) in the Documents directory – user1898014 Dec 13 '12 at 13:31

3 Answers

up vote 3 down vote accepted

Take the lastest version of android-support-v4.jar (in your sdk environement : sdk/extras/android/support/v4/android-support-v4.jar) and replace in your project and library project do not create conflict.

share|improve this answer
, do you mean copying the sdk/extras/android/support/v4/android-support-v4.jar file into the facebook/libs/ folder? And deleting the facebook/libs/android-support-v4.jar file? – user1898014 Dec 13 '12 at 13:32
yes I do. Replace the lib by the same jar and the lastest (so generaly, it's the jar of your sdk). – zicos22 Dec 13 '12 at 16:29
THANK YOU SO MUCH!!!! IT WORKED!!!! :) – user1898014 Dec 14 '12 at 7:24
Don't Forget to mark your question t resolved if the solution is found. Thank – zicos22 Dec 14 '12 at 16:13

The steps to importing a library are:

  1. Download the library
  2. Place the library in the libs folder of the project.
  3. Build the project
  4. Do Not attempt to import the library using some import wizard.

I suspect either your download was corrupted, and you need to do it again, or you put the file into the wrong directly.

share|improve this answer
I downloaded the the root folder containing the fb sdk and samples into a directory. I then followed your advice in copying the samples and fb sdk into the libs of a newly created project. I built the project. Everything worked without errors but the project doesn't recognize when i create a facebook object. – user1898014 Dec 13 '12 at 13:33

I think your problem is that the android.support.v4 versions are different, take the one from your project and replace the one in the Facebook sdk lib folder, it should dismiss the clash.

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.