Hey everyone. When mixing Dagger and Koin what wou...
# koin
i
Hey everyone. When mixing Dagger and Koin what would be the best way to provide jvm types? I am hitting this error. And have similar for Set. When I am injecting a map into a class.
Copy code
Caused by: org.koin.core.error.NoDefinitionFoundException: No definition found for type 'java.util.Map
👍 1
a
look at using Kotlin types first. Generics are not yet handled. You would need to use qualifiers if you need
i
@arnaud.giuliani Thanks for helping ...