DaggerAndroidInjector icon indicating copy to clipboard operation
DaggerAndroidInjector copied to clipboard

Dagger Sample Project on how to use the new dagger-android module for Dagger v2.11

BuddyBuild Continuous Integration

Dagger Android Injector

Kotlin branch here

Update: Latest Dagger 2.11 has provided some helper classes. Check out App.java for the updated simplified usage.

Reddit discussion

Sample project to demonstrate how to use the new dagger-android module in latest Dagger v2.11. Along with Proguard rules. Also shows MVVM pattern and Unit Test setup with Mockito on the side.

Show some :heart:

GitHub stars GitHub forks GitHub watchers GitHub followers
Twitter Follow

Motivation

Right now you maybe getting the Application instance from Activity and injecting ("hydrating") instances based off of that. But the latest version of dagger basically decouples your Activity from knowing who your Injector is.

So this sample project was built because I myself spent a bit of time getting dagger-android module setup at my company Instavans. There are things like getting all the correct library versions to work together. So here is a working starting point on how to use Dagger's @ContributesAndroidInjector which you can build upon.

(click on the images to go to the source)

MainActivity Demo Injectors Module Demo

License

Copyright 2017 Rakshak R.Hegde

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.