I\'m new to dagger (though I have experience with DI from working on Java EE WebApps using Weld).
What I\'m trying to do is to inject a dependency into a class. The
Just the remove the private to set the visibility of your field to package friendly.
private
Dagger doesn't support injection on private fields.