summaryrefslogtreecommitdiff
path: root/tests/proguard.flags
diff options
context:
space:
mode:
Diffstat (limited to 'tests/proguard.flags')
-rw-r--r--tests/proguard.flags20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/proguard.flags b/tests/proguard.flags
deleted file mode 100644
index 3991a1452..000000000
--- a/tests/proguard.flags
+++ /dev/null
@@ -1,20 +0,0 @@
--keep class com.android.contacts.model.Sources {
- public <init>(...);
-}
-
-# Xml files containing onClick (menus and layouts) require that proguard not
-# remove their handlers.
--keepclassmembers class * extends android.app.Activity {
- public void *(android.view.View);
- public void *(android.view.MenuItem);
-}
-
-# Any class or method annotated with NeededForTesting or NeededForReflection.
--keep @com.android.contacts.common.test.NeededForTesting class *
--keep @com.android.contacts.test.NeededForReflection class *
--keepclassmembers class * {
-@com.android.contacts.common.test.NeededForTesting *;
-@com.android.contacts.test.NeededForReflection *;
-}
-
--verbose