Revert "Enable Proguard."

This reverts commit c237ae8c85.

Reason: We need more flags for unit tests
This commit is contained in:
Makoto Onuki 2010-02-18 14:40:53 -08:00
parent 9687b174b8
commit 4f1b4191d1
3 changed files with 1 additions and 25 deletions

View File

@ -28,9 +28,6 @@ LOCAL_JAVA_STATIC_LIBRARIES := android-common
LOCAL_PACKAGE_NAME := Email
LOCAL_PROGUARD_ENABLED := full
LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags
include $(BUILD_PACKAGE)
# additionally, build unit tests in a separate .apk

View File

@ -1,20 +0,0 @@
# keep names that are used by reflection.
-keep class com.android.email.provider.EmailContent$Account
-keepclasseswithmembers class * {
public static void actionEditIncomingSettings(android.app.Activity, com.android.email.provider.EmailContent$Account);
}
-keepclasseswithmembers class * {
public static void actionEditOutgoingSettings(android.app.Activity, com.android.email.provider.EmailContent$Account);
}
-keepclasseswithmembers class * {
public *** newInstance(android.content.Context, java.lang.String);
}
-keep class com.android.email.mail.Store$PersistentDataCallbacks
-keepclasseswithmembers class * {
public *** newInstance(java.lang.String, android.content.Context, com.android.email.mail.Store$PersistentDataCallbacks);
}
-keep class * extends org.apache.james.mime4j.util.TempStorage

View File

@ -33,6 +33,5 @@ LOCAL_INSTRUMENTATION_FOR := Email
LOCAL_SDK_VERSION := current
LOCAL_PROGUARD_ENABLED := full
include $(BUILD_PACKAGE)