Last active
February 9, 2021 12:07
-
-
Save prokash-sarkar/673926a84a8efae6a9fb446641b4b0db to your computer and use it in GitHub Desktop.
This Gist is a part of the Article: https://prokash-sarkar.medium.com/unit-testing-with-dagger-2-brewing-a-potion-with-fakes-mocks-and-custom-rules-in-android-7f0ab7b22cb
This file contains hidden or 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
@Singleton | |
@Component( | |
modules = [ | |
AndroidInjectionModule::class, NetworkModule::class, | |
AppModule::class, AppModuleBinds::class, | |
ViewModelBuilderModule::class, ActivityBuildersModule::class | |
] | |
) | |
interface AppComponent : AndroidInjector<DaggerApplication> { | |
@Component.Factory | |
interface Factory { | |
fun create(@BindsInstance applicationContext: Context): AppComponent | |
} | |
fun inject(app: BaseApplication) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment