dagger-reflect
dagger-reflect copied to clipboard
Fix injection when using generics
Currently, dagger-reflect doesn't work with injectors interfaces relying on generics, such as:
interface Injector<T> {
fun inject(instance: T)
}
@Component
interface MainActivityComponent : Injector<MainActivity>
This PR would fix this issue.
Haven't tried it but this might also fix #202