I've seen in the official Koin's doc that is possible to declare a module as lazy to avoid to be pre-allocated on app startup, but I'can't find a way to make it work.
In my gradle config file I have:
api "io.insert-koin:koin-android:$koin_version"
api "io.insert-koin:koin-core:$koin_version"
api "io.insert-koin:koin-androidx-compose:$koin_version"
with koinversion = 3.4.0. I've also tried to add koin for coroutine dependency but the ide and compiler keep's not finding the lazyModule keyword.
Any suggestions?
Koin's
lazyModule
function is part of thekoin-core-coroutines
module. To uselazyModule
, you need to add the following dependency to your project's app levelbuild.gradle
file:You can find the latest version of the koin-core-coroutines module on the Koin website.