Hi! I'm using Koin for the first time and facing a...
# koin
g
Hi! I'm using Koin for the first time and facing a difficulty. I'm trying to locate a retrofit dependency from Koin. As soon as the dependency is located, the application crashes with the error
Copy code
Error while resolving instance for class 'com.gurpreetsk.something._network.someApi' - error: org.koin.error.BeanInstanceCreationException: Can't create definition for 'Single [name='SomeApi',class='com.gurpreetsk.something._network.someApi']' due to error :
    		Can't get parameter value #0 from org.koin.core.parameter.ParameterList
The Retrofit dependency in turn depends on 2 things: okHttp and Moshi, hence I believe, this error. How do I fix this? Do I need to manually pass okHttp and Moshi dependencies to retrofit in my Activity? (it's an android application)