Colton Idle
01/01/2021, 4:39 AMApplication
or Activity
."
Can anyone explain what that means?
Edit: I think this is part of the lingo of dagger that I haven't picked up yet, but it seems like it's pretty widely accepting that "bindings" in the context of dagger means "types that are available to you". If so... Bindings for Application or Activity... do they actually mean Context?Ahmed Ibrahim
01/01/2021, 12:52 PMSingletonComponent
and ActivityComponent
)
That means when you do an @Inject
and ask the graph for Application
and Activity
you'll be provided them without you doing @Provides
or @Binds
for them.Colton Idle
01/01/2021, 3:04 PM