I've had problems with proguard showing the facebook login button. It wasn't showing when an APK was executed running Proguard. Finally, I manage to solve it by adding the following lines in the proguard-rules.pro file:
*## Facebook specific rules ##
-keep class com.facebook.** {*;}
-dontwarn com.facebook.**
IMO, they are too generic, Should I use another ones?