Skip to content

Instantly share code, notes, and snippets.

@AppScope
@Component
interface AppComponent {
val userComponentFactory: UserComponent.Factory
@Component.Factory
interface Factory {
fun create(@BindsInstance context: Context): AppComponent
}
}