We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f2d8fa commit 776e8dbCopy full SHA for 776e8db
1 file changed
android/proguard-rules.pro
@@ -9,6 +9,7 @@
9
-keepattributes Exceptions
10
-keepattributes SourceFile,LineNumberTable
11
-keepattributes RuntimeVisibleAnnotations
12
+-keepattributes EnclosingMethod
13
14
# ============ Suppress Warnings ============
15
-dontwarn io.micrometer.context.**
@@ -59,4 +60,10 @@
59
60
61
62
-keep class org.apache.commons.compress.** { *; }
--dontwarn org.apache.commons.compress.**
63
+-dontwarn org.apache.commons.compress.**
64
+
65
+# ============ Jackson TypeReference ============
66
+-keep class com.fasterxml.jackson.core.type.TypeReference { *; }
67
+-keep class * extends com.fasterxml.jackson.core.type.TypeReference { *; }
68
+-keep @com.fasterxml.jackson.annotation.JsonIgnoreProperties class ** { *; }
69
+-keep @com.fasterxml.jackson.annotation.JsonProperty class ** { *; }
0 commit comments