refactor proguard rules

// FREEBIE
This commit is contained in:
Jake McGinty
2015-04-01 18:04:23 -07:00
parent 87760a795d
commit 597f7bbafd
11 changed files with 99 additions and 7 deletions

12
proguard-jackson.pro Normal file
View File

@@ -0,0 +1,12 @@
# Proguard configuration for Jackson 2.x (fasterxml package instead of codehaus package)
-keepattributes *Annotation*,EnclosingMethod,Signature
-keepnames class com.fasterxml.jackson.** {
*;
}
-keepnames interface com.fasterxml.jackson.** {
*;
}
-dontwarn com.fasterxml.jackson.databind.**
-keep class org.codehaus.** { *; }