I noticed today that the `GlobalContext` (at least...
# koin
c
I noticed today that the
GlobalContext
(at least on the JVM) is a top level object. Does this have any implications on process death on Android? Do you need to restart Koin after process death? If not, how does it work?
a
by using
startKoin
function at your app entry point (Application class), you are ensured that on process death/restart it’s called and then the GlobalContext is filled up
c
Makes sense! Thanks for the help!