I finally found out why my app crashes built for release. ProGuard was indeed stripping code from my application but i prevented this by manually adding the classes with the
In my case your solution
-keep class com.facebook.** { *; }
works, but I had to keep
-keepattributes Signature
In order to get everything working.