22 lines
688 B
Prolog
22 lines
688 B
Prolog
# Custom serializable
|
|
-keepclassmembers class * implements java.io.Serializable {
|
|
static final long serialVersionUID;
|
|
java.lang.Object writeReplace();
|
|
java.lang.Object readResolve();
|
|
private static final java.io.ObjectStreamField[] serialPersistentFields;
|
|
private <fields>;
|
|
public <fields>;
|
|
}
|
|
|
|
# EventBus
|
|
-keepattributes *Annotation*
|
|
-keepclassmembers class ** {
|
|
@org.greenrobot.eventbus.Subscribe <methods>;
|
|
}
|
|
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
|
|
|
|
# Picasso
|
|
-dontwarn javax.annotation.**
|
|
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.*
|
|
-dontwarn okhttp3.internal.platform.ConscryptPlatform
|