Dagger2 compilation error : cannot be provided without an @Provides-annotated method
I am developing an Android app ans using dagger2 to resolve dependancies but got a compilation error.
Please find below my architecture :
Android module dependencies :
https://i.stack.imgur.com/6l9mD.png▾
and my dagger2 configuration :
@Singleton
@Component(modules = [ApplicationModule::class])
interface ApplicationComponent {
fun presenterComponentBuilder(): PresenterBuilder.Builder
fun useCaseComponentBuilder(): UseCaseComponent.Builder...