Android + Facebook Connect not working in release build

后端 未结 4 1995
野趣味
野趣味 2020-12-21 15:28

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

4条回答
  •  梦毁少年i
    2020-12-21 16:21

    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)

提交回复
热议问题