https://kotlinlang.org logo
#dagger
Title
# dagger
t

trevjones

08/09/2018, 3:13 AM
I ran into this a long while ago when I was in a mixed java/kotlin project and don't think kotlin's compiler will emit bytecode without at least the wildcard generic. you might need to do the module in java to work around it or more appropriate would probably be to modify all the injection sites to match what the kotlin module exposes. If you were a peer on my team I would say something like lets follow effective java and
Don’t use raw types
👍 1
d

darkmoon_uk

08/22/2018, 12:31 AM
Thanks for the advice... and believe me, it is not by choice 😉