Sorry to bother again, but I am trying to understa...
# kodein
k
Sorry to bother again, but I am trying to understand this log:
Copy code
Caused 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?