Application does not implement dagger.android.HasDispatchingActivityInjector
It was because I hadn't added the android:name key with the value of my Application subclass to my manifest file.
Add android:name=".MyApplication"
in your manifest under application tag.
Change the 'MyApplication' to the name of your application class