Is it recommended to replace `GlobalContext.get()`...
# koin
m
Is it recommended to replace
GlobalContext.get()
with
KoinPlatformTools.defaultContext().get()
?
a
GlobalContext.get()
is more JVM related.
KoinPlatformTools.defaultContext().get()
is the cross platform way
👍 1