Does anyone have experience on migrating from `koi...
# android
y
Does anyone have experience on migrating from
koin
to
hilt
, I'm stuck in the area where
koin
passes parameters to the inject! e.g:
val SomeClass by inject {
parameterOf()
}
What's the equivalent in
hilt
y
it's both
android
and
dagger
c
what your looking for is assisted injection. Should be pretty easy to find documentation on this
☝️ 2