diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-03-19 22:46:58 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-03-19 22:46:58 -0700 |
commit | 9eafac97066552fb87462061354f275ef41ecb4e (patch) | |
tree | 484a98b4c09793275ddb61cbe0421f5ad7c57e71 | |
parent | b314a1844b41918df2e3fe443b19c5072ca14e99 (diff) | |
download | dsub-9eafac97066552fb87462061354f275ef41ecb4e.tar.gz dsub-9eafac97066552fb87462061354f275ef41ecb4e.tar.bz2 dsub-9eafac97066552fb87462061354f275ef41ecb4e.zip |
Update proguard
-rw-r--r-- | proguard.cfg | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/proguard.cfg b/proguard.cfg index f0b04dc3..c33e3c90 100644 --- a/proguard.cfg +++ b/proguard.cfg @@ -1,9 +1,10 @@ +-dontobfuscate
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
--optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
+-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*,!code/allocation/variable
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
@@ -13,6 +14,11 @@ -keep public class * extends android.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService
+-keep,allowshrinking class java.beans.** { *; }
+-keep,allowshrinking class sun.reflect.** { *; }
+-dontwarn sun.reflect.**
+-dontwarn java.beans.**
+-keep,allowshrinking class com.esotericsoftware.** { *; }
-keepclasseswithmembernames class * {
native <methods>;
|