Skip to content

myotive/decouple-android-example

Repository files navigation

Decouple Android with Dagger and Otto

Otto Dagger

This repository contains the sample code that accompanies my CodeMash 2016 presentation on Dagger 2 and Otto.

Here are my slides

Dagger is a dependency injection framework for Android currently being maintained by Google.

Otto is an event bus for Android written by Square.

Screens

Non Dagger Sample

Non Dagger Sample

This sample illustrates creating a RetroFit API (StarWarsAPI), performing a GET request on "/films" and displaying the results in a RecyclerView.

Dagger Sample

This sample illustrates performs the same task as the Non Dagger Sample, but using Dagger 2 to inject the StarWarsAPI class.

This example also illustrates a dependent component, StarWarsFragmentComponent. This component depends on ApplicationComponent. I wanted to do this so I could show how you can sub-scope object graphs. When StarWarsFragmentComponent gets destroyed, the singleton object SearchResultAdapter will get cleaned up.

Otto Sample

Otto Sample

This example demonstrates a fragment communicating with a retrofit. Upon a successful call to the getFilm api, retrofit will post the success event to the bus, which gets handled in the fragment. If there is a network error, the event gets handled by the Activity.

This sample also shows how you can use the DeadEvent class to debug when there are no subscribers for an event.

Building

To build, install and run a debug version, run this from the root of the project:

./gradlew assembleDebug

#Unit Tests

To run the unit tests for the application:

./gradlew testDebugUnitTest

References

Dagger

Otto

Both Otto and Dagger

About

CodeMash 2016 presentation on Dagger 2 and Otto

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages