kikermo
04/08/2018, 10:05 PMCaused by: org.kodein.di.Kodein$NotFoundException: No binding found for bind<MyComponent>() with ? { ? }
Available bindings for this type:
module {
bind<MyComponent>() with scoped(AndroidComponentsWeakScope).singleton { MyComponentImpl }
}
Just to Clarify MyComponent is an interface, and MyComponentImpl is the implementation. Obvious, but just in case… What I miserably fail to understand is why the binding is not found if there are Available bindings for that that type. Do I have to specify anything else for that binding to be resolved?