Hi everyone, I am currently looking at the new fea...
# koin
s
Hi everyone, I am currently looking at the new features available in koin 3.2.0 (here), but I do not completley understand what is going to be deprecated. What do you mean with Reflection DSL? Will
get
and
getAll
still be available (and not deprecated)? Thanks for your help!
a
Koin DSL is just deprecated for function that are using reflection. At least it will be transferred in a separated module.
🙏 1
The new DSL avoid you to write
get()
on every dependency. But if you need to specify some way to resolve things, you sill have access to
get()
and
getAll()
Reflection DSL is like
single<MyClass>()