TomRidder
TomRidder
maybe ur third part lib also have the annotation called @Subscribe and eventbus get the wrong annotation which don't have the priority value
t > minifyEnabled false still I am getting this Error. Please check SO for the description. https://stackoverflow.com/questions/63341627/eventbusexception-its-super-classes-have-no-public-methods-with-the-subscribe it is because u should register in MainFragment,not in MainActivity :)
u should register in the class which contains the @subscribe method. probably u register in the wrong class :)
` public void register(Object subscriber) { if (AndroidDependenciesDetector.isAndroidSDKAvailable() && !AndroidDependenciesDetector.areAndroidComponentsAvailable()) { // Crash if the user (developer) has not imported the Android compatibility library. throw new RuntimeException("It looks like you...
> How should I setup Event Bus for triggering multiple events from my Socket Connections every seconds ? postEvent in your socket callback method
 write ur build gradle like this it works fine for me
if it is Visualizing Graph ,i guess greenbot team should add the annotation of @post,because the Graph can only generate in compile time. if it is a LOG like **A...
even use Method..it is still invoke on Runtime ... so it's still use reflection
> The way that retrofit builds a `multipart/form-data` it doesn't allow us to build a request with charset to utf-8 like `multipart/form-data; charset=utf-8` which could lead to syntax errors. One...
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") @JsonSubTypes({ @JsonSubTypes.Type(value = Car.class, name = "car"), @JsonSubTypes.Type(value = Lorry.class, name = "lorry") }) public static interface Vehicle { }