New Dependency Injection library for android
Dependency Injection(DI) — is a technique in which an object receives other objects that it depends on. DI can be implemented in any programming language. The general concept behind dependency injection is called inversion of control.
In android development, we integrate a lot of dependencies most of the time, e.g. objects etc. We use the Dependency Injection framework to manage those dependencies.
Over these past few years, a lot of dependency injection framework has been developed. One of the popular for Android is Dagger.