am 38cdd442
: Tweak proguard flags in the 2 files.
* commit '38cdd4429f23d9a0d27a6d8cfe318c29b604afbf': Tweak proguard flags in the 2 files.
This commit is contained in:
commit
8f5868057c
2 changed files with 17 additions and 17 deletions
|
@ -1,11 +1,3 @@
|
|||
# see http://sourceforge.net/tracker/?func=detail&aid=2787465&group_id=54750&atid=474707
|
||||
-optimizations !code/simplification/arithmetic
|
||||
-optimizations !code/simplification/cast
|
||||
-allowaccessmodification
|
||||
|
||||
# To prevent name conflict in incremental obfuscation.
|
||||
-useuniqueclassmembernames
|
||||
|
||||
# dex does not like code run through proguard optimize and preverify steps.
|
||||
-dontoptimize
|
||||
-dontpreverify
|
||||
|
@ -16,8 +8,10 @@
|
|||
# Add this flag in your package's own configuration if it's needed.
|
||||
#-flattenpackagehierarchy
|
||||
|
||||
# Some classes in the libraries extend package private classes to chare common functionality
|
||||
# that isn't explicitly part of the API
|
||||
-dontskipnonpubliclibraryclasses -dontskipnonpubliclibraryclassmembers
|
||||
# Keep classes and methods that have the guava @VisibleForTesting annotation
|
||||
-keep @com.google.common.annotations.VisibleForTesting class *
|
||||
-keepclassmembers class * {
|
||||
@com.google.common.annotations.VisibleForTesting *;
|
||||
}
|
||||
|
||||
-include proguard_basic_keeps.flags
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
# see http://sourceforge.net/tracker/?func=detail&aid=2787465&group_id=54750&atid=474707
|
||||
-optimizations !code/simplification/arithmetic
|
||||
-optimizations !code/simplification/cast
|
||||
-allowaccessmodification
|
||||
|
||||
# To prevent name conflict in incremental obfuscation.
|
||||
-useuniqueclassmembernames
|
||||
|
||||
# Some classes in the libraries extend package private classes to chare common functionality
|
||||
# that isn't explicitly part of the API
|
||||
-dontskipnonpubliclibraryclasses -dontskipnonpubliclibraryclassmembers
|
||||
|
||||
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
|
||||
-keepclassmembers enum * {
|
||||
public static **[] values();
|
||||
|
@ -16,12 +28,6 @@
|
|||
java.lang.Class class$(java.lang.String, boolean);
|
||||
}
|
||||
|
||||
# Keep classes and methods that have the guava @VisibleForTesting annotation
|
||||
-keep @com.google.common.annotations.VisibleForTesting class *
|
||||
-keepclassmembers class * {
|
||||
@com.google.common.annotations.VisibleForTesting *;
|
||||
}
|
||||
|
||||
# Keep serializable classes and necessary members for serializable classes
|
||||
# Copied from the ProGuard manual at http://proguard.sourceforge.net.
|
||||
-keepnames class * implements java.io.Serializable
|
||||
|
|
Loading…
Reference in a new issue