EventBus: Simplifying data sharing between components in Android

Read Time < 1 minute In almost every android app there is a need to pass data between different components i.e Activities, Fragments, Services and threads. One case is very common and that is posting data to UI thread from background thread. Although android framework provide Handlers and AsyncTasks for this purpose but we all know they are not well …

EventBus: Simplifying data sharing between components in Android Read More »