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?