Last active
August 19, 2018 15:37
-
-
Save ibrahimsn98/f5c38c209bf3e1710d91701a47053a88 to your computer and use it in GitHub Desktop.
android-mvvm-with-dagger-2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Module | |
public abstract class MainFragmentBindingModule { | |
@ContributesAndroidInjector | |
abstract ListFragment provideListFragment(); | |
@ContributesAndroidInjector | |
abstract DetailsFragment provideDetailsFragment(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment