Interesting, "service locator" pattern is not the ...
# koin
a
Interesting, "service locator" pattern is not the main part of Koin. This is the way of injecting depndencies in the Android runtime. Instead of wirting
inject(this)
in our
onCreate
and scan all properties with annotation, we directly request it our container with
by inject()
. All others components are declared in the DSL, and will be injected by constructor.
👍 1