In my App.class
's onCreate()
I instantiate my Injector
like this:
injector = DaggerInjector
.builder()
.appModule(new AppModule(this))
.build();
In the officiel Android Studio Release of 2.3 everything works as it should, but when using Android Studio 3.0 Canary 8 with the newest Gradle 2.5.0-alpha-preview-02
(which is required to use the new font feature) then DaggerInjector
is never found, like it doesn't exist at all
My stackstrace says only this:
Error:(8, 47) error: cannot find symbol class DaggerInjector
Error:(45, 20) error: cannot find symbol variable DaggerInjector