You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If use the following rule, it will be crashed on Android 4.4: -dontwarn icepick.** -keep class icepick.** { *; } -keep class **$$Icepick { *; } -keepclasseswithmembernames class * { @icepick.* <fields>; } -keepnames class * { @icepick.State *;}
Crash logs (I used apache commons lib in my project): java.lang.NoSuchMethodError: org.apache.commons.lang3.StringUtils.a ... ...
If I removed <-keepnames class * { @Icepick.State *;}> line, it works, I don't know why.
The text was updated successfully, but these errors were encountered:
If use the following rule, it will be crashed on Android 4.4:
-dontwarn icepick.** -keep class icepick.** { *; } -keep class **$$Icepick { *; } -keepclasseswithmembernames class * { @icepick.* <fields>; } -keepnames class * { @icepick.State *;}
Crash logs (I used apache commons lib in my project):
java.lang.NoSuchMethodError: org.apache.commons.lang3.StringUtils.a ... ...
If I removed <-keepnames class * { @Icepick.State *;}> line, it works, I don't know why.
The text was updated successfully, but these errors were encountered: