Koin 4.1 is now released - here is the article <ht...
# koin
a
koinscroll 4
🎉 5
t
nice sadly this link is broken Migrations & Deprecations are available from the documentation: https://insert-koin.io/docs/4.1/support/releases
a
fixed
o
I do not get the Start Configuration Extension part. I didn't find anything related to this in doc. For now, I'm using KoinStartup & onKoinStartup
Copy code
@OptIn(KoinExperimentalAPI::class)
open class TasksApplication : Application(), KoinStartup {
...
override fun onKoinStartup() = koinConfiguration {
    androidContext(this@TasksApplication)
    modules(
        utilModule,
        loggingModule,
        platformModule(target),
        dataModule,
        authModule(GCP_CLIENT_ID),
        networkModule,
        myAppModule,
    )
}
How would that apply to help abstract
platformModule()
? (which is a
expect
function) I have the feeling it's related.
a
it's about a startKoin function. The configuration can now handle some
includes
to help pass native config on the fly