marcoseinco
Member
Is there a library or another way to receive events from an Android Studio app which uses this code to send events?
I think that this is JeremyLiao/LiveEventBus from github
Send event:
LiveEventBus
.get("myKey")
.postAcrossApp(new NoticeEvent(simp));
Receive event:
LiveEventBus
.get("myKey", NoticeEvent.class)
.observe(this, new Observer<NoticeEvent>() {
@Override
public void onChanged(@Nullable NoticeEvent event) {
if (event != null) {
if (event.getNotice() == 0x01...
I think that this is JeremyLiao/LiveEventBus from github