summaryrefslogtreecommitdiffstats
path: root/proguard.flags
diff options
context:
space:
mode:
authorMakoto Onuki <omakoto@google.com>2010-05-17 15:44:36 -0700
committerMakoto Onuki <omakoto@google.com>2010-05-18 10:48:11 -0700
commit7d3519151a34792956cfc2b63bd2735fd0202d54 (patch)
tree6274c29bd58a5ebb70cadee6e00fc89d6321f575 /proguard.flags
parent1c4abf20d388ff8da0d88ed33f8364c19f378512 (diff)
downloadandroid_packages_apps_Email-7d3519151a34792956cfc2b63bd2735fd0202d54.tar.gz
android_packages_apps_Email-7d3519151a34792956cfc2b63bd2735fd0202d54.tar.bz2
android_packages_apps_Email-7d3519151a34792956cfc2b63bd2735fd0202d54.zip
Tests for IMAP FETCH
Adding regression test for the new IMAP parser. Change-Id: Iac7f5c022e44ca5f06f735e145af15cc459eb61f
Diffstat (limited to 'proguard.flags')
-rw-r--r--proguard.flags6
1 files changed, 5 insertions, 1 deletions
diff --git a/proguard.flags b/proguard.flags
index bbffc8a54..f3b7e57d2 100644
--- a/proguard.flags
+++ b/proguard.flags
@@ -23,9 +23,9 @@
-keep class * extends org.apache.james.mime4j.util.TempStorage
-
# Keep names that are used only by unit tests
+# Any methods whose name is '*ForTest' are preserved.
-keep class ** {
*** *ForTest(...);
}
@@ -172,3 +172,7 @@
-keep class org.apache.james.mime4j.message.Message {
*;
}
+
+-keepclasseswithmembers class org.apache.commons.io.IOUtils {
+ *** toByteArray(...);
+}