Fixing release issue (proguard was stripping @Subscribe methods).
parent
8cf13d5fb9
commit
a97ea439f6
|
@ -26,4 +26,18 @@
|
|||
-dontwarn retrofit2.**
|
||||
-dontwarn okio.**
|
||||
-dontwarn com.crashlytics.**
|
||||
-dontwarn okhttp3.logging.**
|
||||
-dontwarn okhttp3.logging.**
|
||||
|
||||
## New rules for EventBus 3.0.x ##
|
||||
# http://greenrobot.org/eventbus/documentation/proguard/
|
||||
|
||||
-keepattributes *Annotation*
|
||||
-keepclassmembers class ** {
|
||||
@org.greenrobot.eventbus.Subscribe <methods>;
|
||||
}
|
||||
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
|
||||
|
||||
# Only required if you use AsyncExecutor
|
||||
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
|
||||
<init>(java.lang.Throwable);
|
||||
}
|
Loading…
Reference in New Issue