EventBus
EventBus copied to clipboard
In the lib project reference encapsulation, use error in the main project (在lib项目引用封装,在主项目使用报错)
org.greenrobot.eventbus.EventBusException: Subscriber class com.soft.supervise.activity.SplashActivity and its super classes have no public methods with the @Subscribe annotation
Do you minify (use ProGuard) on the library project? Maybe add a rule to keep the @Subscribe annotation name, like -keep @interface org.greenrobot.eventbus.Subscribe.
Related to #614.