I am trying to bind subclasses of ViewModel
into a map by their KClass
types:
@Module abstract class ViewModelModule {
@Binds @Int
When using KClass
in an annotation, it actually gets compiled to Java's Class
. But the actual issue is the wildcard in java.util.Map
that the Kotlin compiler is generating.
Assuming that @ViewModelKey
is defined as
@MapKey
annotation class ViewModelKey(val value: KClass)
You'll need to define your injection site as
Map, @JvmSuppressWildcards Provider>
Using @JvmSuppressWildcards
will prevent the compiler from generating wildcards.
I don't actually know, why wildcards are not supported by the Dagger compiler. You can see a similar issue here: Dagger 2: How to inject Map