Assisted Injection in Android
Dagger is a JSR-330 dependency injection library that allows you to split up the behaviour of your app from the creation of your dependencies. In most »
Dagger is a JSR-330 dependency injection library that allows you to split up the behaviour of your app from the creation of your dependencies. In most »
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 share() operator. I was implementing a login form validation using RxJava and I had to share an Observable to multiple observers. »
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 what I »
You can use StrictMode to catch mistakes earlier on in the development cycle. It's especially useful for catching accidental disk or network I/O on the »