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 want to do Login with facebook. I am following this Steps.It's all working perfact. But when I am going to Create a new Android Project with Facebook Login STEP-6 into above link I got the error of the Jar mismatch.

when I create new android application that time there is no any errors, but when add the FacebookSDK to the newly create project. that time it gives

Jar mismatch! Fix your dependencies  |   Unknown Android Dependency Problem

I tried everything to change the java compiler level but not getting.

I tried project properties > Java compiler > In this level I do all changes of the java versions, but not success.

any help please?

Thank you.

share|improve this question

3 Answers

up vote 39 down vote accepted

Try using the remove the android-support-v4.jar file from the libs folder from your project.

Good Luck.

share|improve this answer
Nice solution! my prob solved – Jignesh Ansodariya Feb 14 at 12:13
It worked!. Can you please give more explanation on what is the problem? – nizam.sp Mar 29 at 6:49
Thank you @RB Patel – Pratik Butani Apr 17 at 12:07

If there is any JAR file with same name in the libs folder of the Library and your Project, they must have the same size(same jar files).

If now just replace one of them with the other

share|improve this answer
Thanks, it's working. – user1584610 Jan 25 at 5:15

The Android FacebookSDK includes its own version of android-support-v4.jar, and it's most likely the conflicting jar.

Open project preferences, select Java Build Path and remove android-support-v4.jar from the root, and things should compile well again.

share|improve this answer

Your Answer

 
discard

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