I\'m trying to convert a project that I\'m building to use the dagger-android API for the DI framework, but I\'m running into a dead end with an IllegalArgumentException whe
in my case, I did not define the Fragment in @Module class! so When I added it like :
Fragment
Module
@ActivityScope @ContributesAndroidInjector(modules = {ActivityModule.class}) abstract InvestmentDetailsFragment bindInvestmentDetailsFragment();
my problem fixed!