I ran into a similar problem when I first discover...
# kodein
k
I ran into a similar problem when I first discovered about scopes. Here, inside your activity, your kodein scope is not defined, meaning that your
Copy code
viewModel: MainViewModel by kodein.instance()
will try to retrieve an unscoped MainViewModel (and none are defined in your bindings!)
a
Thanks Luc