Skip to content

Instantly share code, notes, and snippets.

@Morfly
Last active November 7, 2021 17:31
Embed
What would you like to do?
interface ProviderA {
// provided dependencies
}
@Component
interface ComponentA : ProviderA {
...
}
@Component(dependencies = [ProviderA::class]
interface ComponentB {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment