Thanks for the awesome works you’ve done for the c...
# koin
m
Thanks for the awesome works you’ve done for the community, and the official github samples architecture. That will helps everyone in the community (especially the ones regreting using Hilt and wants to migrate to Koin :))) yes that’s me) I do really apologize bringing up this topic again after a year old, hope you guys don’t mind: --- I presume based on: https://github.com/android/architecture-samples/compare/dev-hilt...InsertKoinIO:dev-koin your branch do the complete migration from Hilt to Koin, not? If yes, I’m curious is it possible to do something like this between Hilt & Koin (step-by-step migration)
Copy code
class Abc @Inject constructor(
   private val repo: AbcRepository
)

// 

val domainModule = module {
    single<AbcRepository> { AbcRepositoryImpl }
}
the goals are, migrating all of Hilt
@Module
&
@EntryPoint
to Koin before fully migration (does it still works even we already use Hilt)? This discussion here does it obsolete (cmiiw since 3yr ago) as Koin now already v3.y.z