I\'m trying to login with Facebook using ParseFacebookUtils library and it\'s working good but when i enabled the Proguard file i have this exception on Facebook login activ
I just added this line and it's working:
-keep class com.facebook.** { *; }
try to add
-keep class com.facebook.* -keep class com.facebook.login.*
in your proguard file
You have to add below lines into your file, That will resolve your problem.
Only need to add below lines.
-dontwarn com.facebook.**
-keep class com.facebook.** { *; }
-keepattributes Signature