-optimizations
!code/simplification/arithmetic,!code/allocation/variable,!field/*,!class/merging/*
Specifically, !code/allocation/variable and !field/* fixed this particular
problem. !class/merging/* fixed a problem where dex would error out with
an invalid opcode error in the Android support v4 library.
~Craig
> --
> You received this message because you are subscribed to the Google Groups
> "roboguice" group.
> To post to this group, send email to robo...@googlegroups.com.
> To unsubscribe from this group, send email to
> roboguice+...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/roboguice?hl=en.
>
>
-keepattributes *Annotation*,Signature
-keep class com.google.inject.Binder
-keep public class com.google.inject.Inject
# keeps all fields and Constructors with @Inject
-keepclassmembers,allowobfuscation class * {
@com.google.inject.Inject <fields>;
@com.google.inject.Inject <init>(...);