Hi everyone! Currently im starting with `Koin`, an...
# koin
d
Hi everyone! Currently im starting with
Koin
, and have the next questions. What its the most recommended option for using
Koin
in project with dynamic features? for example, i have some modules (dynamic) and i need interaction between they, in big project is a problem with
scalability
and
maintainability
? thanks for reading me 😬
a
One of the first approach I would recommend is to seperate your features into seperated Koin modules
load them on the fly and drop them if needed 👍
loadKoinModules()
&
unloadKoinModules()
In a second part, as Koin is entirely dynamic, it will easy to “scan” for components
d
amazing! thanks for answer me 🙌
👍 1