I am trying to create a stand alone library and use dagger 2 in it, I already create the module and the component of the library, and make the initialisation of the library including the dagger component, my goal here is I wanted this library can be used even the project who implemented it did not use dagger. but it seems my configuration only can work if the project implemented it, also use dagger2 cause I got error :
Application does not implement dagger.android.HasDispatchingActivityInjector
So are there anyway I can still dagger2 in my library without having the project who implemented it also use dagger2 ?
ps : My library contain an activity