This is the bare minimum specified by Roboguice for proguard support: https://gist.github.com/matthawley/1327908
I am forced to add these to prevent the code from crashing:
-keep class com.appmanager.ui.fragments.* { *; }
-keep class com.appmanager.ui.views.* { *; }
Which means that all of my views and fragments are not obfuscated. Is there a way to circumvent this behaviour?