Closed pedroramos1449 closed 7 months ago
Koin doesn't find ConfigurationKoinInitializer
, means you don't have any definition for this type defined. Not sure your factory { ConfigurationKoinInitializer( coroutineScope, configuratorAppFeatureTogglesService, firebaseRemoteConfig ).configurationModule }
expression is return ConfigurationKoinInitializer
what is configurationModule
?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I am converting my whole project into Koin. Using Koin KMP (I am converting right now my shared module).
And I have multiple modules, that are being executed in one main module (which the main contains the references to the others), for organisation proposes only.
Here's my Main Module:
Here's the child module, per example ConfigurationKoinInitializer.
When building the app, it gives me an error about the initialisers, that I have on my KoinModules. I've tried to initialise with the get()
(example: configurationKoinInitializer = get() )
and by the normal way we initialise thingsBut it doesn't work...
The error I get on my Logcat:
I am new at dependency injection.
If someone has any idea, I would love.
Thanks.