Created
December 5, 2018 02:50
-
-
Save tompee26/6c9d0fb942d0556375beb52dcc54f71c to your computer and use it in GitHub Desktop.
ActivityModule.kt
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
@Module(subcomponents = [MainActivitySubcomponent::class]) | |
abstract class ActivityModule { | |
@Binds | |
@IntoMap | |
@ClassKey(MainActivity::class) | |
abstract fun bindMainActivityInjectorFactory(builder: MainActivitySubcomponent.Builder): AndroidInjector.Factory<*> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment