Created
November 11, 2019 20:23
-
-
Save kirich1409/fbd1122c43663dbbc6a7cdbc2880703a to your computer and use it in GitHub Desktop.
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
@Component( | |
modules = [ | |
AppModule::class, | |
ComponentProvidersModule::class, | |
FragmentBindsModule::class, | |
ActivityBindsModule::class | |
] | |
) | |
interface AppComponent { | |
fun inject(factory: InjectComponentFactory) | |
val activityProviders: Map<Class<out Activity>, @JvmSuppressWildcards Provider<Activity>> | |
val fragmentFactory: FragmentFactory | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment