how can i inject DataManager in my intent services...
# android-architecture
z
how can i inject DataManager in my intent services , can any one help me ?
b
I usually inject inside
IntentService
by using
DaggerComponent
in
init()
of the
IntentService
Copy code
@Inject lateinit var eventBus: Event2Bus

    init {
        DaggerTaskComponent
                .builder()
                .contextModule(ContextModule(this))
                .build()
                .inject(this)
    }