I\'m hoping that this is just something I\'m doing wrong here. I\'m trying to use Dagger 2.0 to inject dependencies for my JUnit tests (not Espresso tests, just pu
Depending on your test type:
testAnnotationProcessor "com.google.dagger:dagger-compiler:2.x"
inside dependencies on your build.gradle file for src/test
or
androidTestAnnotationProcessor "com.google.dagger:dagger-compiler:2.x"
inside dependencies on your build.gradle file for src/androidTest