hi, im trying to run an app in Kotlin/Native targe...
# koin
s
hi, im trying to run an app in Kotlin/Native targeted to macOs. And met an exception i can not fix:
Copy code
Uncaught Kotlin exception: kotlin.native.concurrent.FreezingException: freezing of savrov.sdk.store.client.feature.product.di.ProductModule@d0414e08 has failed, first blocker is org.koin.core.scope.ScopeDefinition@cea8c1fa
this is my main.kt class:
Copy code
// run console app
fun main(args: Array<String>) {
    startKoin {
        modules(ProductModule.di())
    }
    // run some command in console 
    MainNavigationCommand().main(args)
}
Can someone pls navigate me how to solve it. Thank you