Hi there, in 2.2.0 ScopeActivity is there a difference between calling `getKoin()` and `koin` ? `Sc...
s
Hi there, in 2.2.0 ScopeActivity is there a difference between calling
getKoin()
and
koin
?
ScopeActivity
uses
getKoin()
in its code whereas
ScopeFragment
directly uses
koin
, should we make the code consistent ?
a
perhaps getKoin() would be better in the sense that we can a KoinComponent on it
but it’s already backed up, then no problem `
Copy code
override val koin by lazy { getKoin() }
`