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
{{ message }}
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
I discovered that with current Guava configuration ProGuard removes annotated EventBus subscriber methods and so events are fired but not consumed.
This rule fixes this issue:
-keepclassmembers class ** {
@com.google.common.eventbus.Subscribe public *;
}
The text was updated successfully, but these errors were encountered:
I discovered that with current Guava configuration ProGuard removes annotated EventBus subscriber methods and so events are fired but not consumed.
This rule fixes this issue:
The text was updated successfully, but these errors were encountered: