I have an Android application that allows the user to connect to his Facebook account and automatically make a post on his wall.
All this is perfectly working with t
This is the only thing that worked for me with facebook sdk 3.0:
-keepattributes Signature
-dontwarn com.facebook.**
-dontwarn com.parse.**
-keep class com.facebook.** { *; }
-keep class com.parse.** { *; }
(got this from http://adilatwork.blogspot.com/2013/01/parse-android-sdk-facebook-and-proguard.html)