From c407643689445e23a5b4ed6cd1a81065b825cfa5 Mon Sep 17 00:00:00 2001 From: Yohann Roussel Date: Mon, 22 Dec 2014 12:17:54 +0100 Subject: [PATCH] -keepclasses is not a proguard option It looks like proguard is accepting it and make completion to a valid option even if there's ambiguity beetwen -keepclasseswithmembers and -keepclasseswithmembernames. Jack is not permitting that kind of incomplete options, so fixing. Change-Id: I034e1cb6ecdcd96beec11ac6b30a0baeb1aebba3 --- proguard.flags | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proguard.flags b/proguard.flags index 2cf4c782b..ce5024591 100644 --- a/proguard.flags +++ b/proguard.flags @@ -4,5 +4,5 @@ public *** newInstance(com.android.emailcommon.provider.Account, android.content.Context); } --keepclasses class com.android.email.activity.setup.AccountSetupFinal --keepclasses class com.android.email.activity.setup.AccountSettingsFragment +-keep class com.android.email.activity.setup.AccountSetupFinal +-keep class com.android.email.activity.setup.AccountSettingsFragment \ No newline at end of file