summaryrefslogtreecommitdiffstats
path: root/tools/mainDexClasses.rules
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mainDexClasses.rules')
-rw-r--r--tools/mainDexClasses.rules27
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/mainDexClasses.rules b/tools/mainDexClasses.rules
deleted file mode 100644
index af4085a..0000000
--- a/tools/mainDexClasses.rules
+++ /dev/null
@@ -1,27 +0,0 @@
- -keep public class * extends android.app.Instrumentation {
- <init>();
- }
- -keep public class * extends android.app.Application {
- <init>();
- void attachBaseContext(android.content.Context);
- }
- -keep public class * extends android.app.Activity {
- <init>();
- }
- -keep public class * extends android.app.Service {
- <init>();
- }
- -keep public class * extends android.content.ContentProvider {
- <init>();
- }
- -keep public class * extends android.content.BroadcastReceiver {
- <init>();
- }
- -keep public class * extends android.app.backup.BackupAgent {
- <init>();
- }
-# We need to keep all annotation classes because proguard does not trace annotation attribute
-# it just filter the annotation attributes according to annotation classes it already kept.
- -keep public class * extends java.lang.annotation.Annotation {
- *;
- }