Skip to content
Advertisement

java.lang.RuntimeException: It looks like you are using EventBus on Android, make sure to add the “eventbus” Android library to your dependencies

I am a fan of this eventbus library and used that on the other projects well without getting any issues. But now, I am getting some odd issue with registering eventbus on the activity and got stuck with this part here…

java.lang.RuntimeException: It looks like you are using EventBus on Android, make sure to add the “eventbus” Android library to your dependencies.

I am getting this error on both – bluestack5 and emulators…

I’ve installed the library correctly for sure and getting this odd error. Is there any one who got the similar error before? Thank you.

=====================================================

JavaScript

===========================================================

JavaScript

Advertisement

Answer

This exception is thrown when you call register. Here is what the code looks like

JavaScript

This leads me to believe you have this dependency

implementation("org.greenrobot:eventbus-java:3.3.1")

instead of this which is for Android

implementation("org.greenrobot:eventbus:3.3.1")

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement