I have a module that has a `@Provides @Singleton f...
# dagger
r
I have a module that has a
@Provides @Singleton fun provideFoo(): Foo
in it that even gets called by the generated FooModule_ProvideFooFactory class, yet when I try to compile my app I get
Error:bla.bla.bla.Foo cannot be provided without an @Inject constructor or from an @Provides- or @Produces-annotated method.
. Why could that be?