Im trying to use Dagger 2 on android. I previously had it working and i had an appModule injecting dependencies into specific classes in the app. My Issue is that iam getting th
This did the trick for me with the (current) latest dagger dependecies.
`dependencies{ ... compile 'com.google.dagger:dagger:2.11' compile 'com.google.dagger:dagger-android-support:2.11' annotationProcessor "com.google.dagger:dagger-compiler:2.11" }`