<Dagger 1 won't field inject Java class into Kotli...
# stackoverflow
u
Dagger 1 won't field inject Java class into Kotlin activity I have a big project using Dagger 1 and written in Java. I am now adding new activities in Kotlin but I haven't been able to inject a Java class in a Kotlin Activity. Here is my Module import dagger.Module; import dagger.Provides; @Module( injects = { HomeActivity.class }, complete = false, library = true ) public class AppModule { @Provides @ForApplication @Singleton public SessionStorage...