the source code before compile&proguard :
public class IntentSession extends BaseIntentSession {
@Override
public void onResume() {
super
Working through these bugs that -keep
doesn't fix is a REAL pain and the only way I've ever made headway on them is by following this strategy:
E.G.
Verify that this is an optimization issue or not
-dontoptimize
instead of the -optimizations
string rebuild and test!method/*, !code/*, !class/*, !field/*
until you determine which exclusion makes the issue go away!method/*
, go from it to !method/marking/*
and then if that works too try !method/marking/final
. If that works, then you've found the minimum exclusion)This could very well be a bug in the Proguard rules of one of the libs you're using or in the version of Proguard you're using itself (I've seen both) so try to update both as well.