How to integrate facebook login in android app using SocialAuth

169 views Asked by At

I'm working on facebook integration using socialauth I've added socialauth jars but couldn't execute the program it's showing the following error :

Error:Execution failed for task ':app:dexDebug'.
> com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_05\bin\java.exe'' finished with non-zero exit value 2

I don't know why is it showing that, I might not have installed libraries properly.

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.squareup.okhttp:okhttp:2.5.0'
compile 'com.google.android.gms:play-services:7.8.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile files('libs/socialauth-4.4.jar')
compile files('libs/socialauth-android-3.2.jar')


}

Please help Thank you in advance

0

There are 0 answers