does anyone knows why `factory` is getting warnin...
# koin
a
does anyone knows why
factory
is getting warning
This API is using reflection and implies some introspection performance penalties on limited capacity devices (Android)
in 3.1.3? How to fix it?
a
this is just a warning because you the API that is using reflection. It was not mentioned before, and some people were questioning about performances. Now you know what you use.
you can either OptIn to keep the reflective API, but no warning. Either use the other DSL API.
new DSL operator is also coming: https://github.com/InsertKoinIO/koin/pull/1186
a
thank you @arnaud.giuliani for explanation.
👍 1