Assisted Injection in Android
September 15, 2016Dagger is a JSR-330 dependency injection library that allows you to split up the behaviour of your app from the creation of your…
Dagger is a JSR-330 dependency injection library that allows you to split up the behaviour of your app from the creation of your…
AutoValue is a tool that lets you remove a lot of the boilerplate associated with writing value types in Java. It does this by using an…
I’ve been burned by the operator. I was implementing a login form validation using RxJava and I had to share an Observable to multiple…
I’ve been playing around with Facebook’s Flux architecture and RxJava lately and I wanted an event bus to use as the Dispatcher. Here is…
You can use to catch mistakes earlier on in the development cycle. It’s especially useful for catching accidental disk or network I/O on…
Android has a relatively unpredictable habit of killing any that is not immediately visible to the user to reclaim memory. Because of this…
is a beta feature in RxJava that represents a single value, rather than a stream of values that an represents. This is useful in…