Hi, if a library uses “io.insert-koin:koin-android...
# koin
d
Hi, if a library uses “io.insert-koin:koin-androidx-startup” to define it’s own koin setup, when I add koin-androidx-startup to the app itself, it probably overrides androidx.startup.InitializationProvider defined in the library and app crashes because of the missing dependencies… What is the best way to fix this? Probably I can’t use KoinStartup interface, and have to manually add my version of InitializationProvider which depends on the one defined in library? In addition InitializationProvider defined in the library is internal so it’s not possible to access it…