Dagger 2 for Dummies in Kotlin — Subcomponent
We learned about @Scope in my previous blog. We can see that it is tied to a @Component. It allow us to create a scoped object and reuse it the next time. For un-scoped object, a new one is always recreated.
But having one @Scope is not sufficient for a bigger project. Especially for project in Android, we do have Activities and then have Fragments. We need something that not live…



