We can’t conclude anything from the build times, 17 and 18 seconds respectively doesn’t say anything in the long run, but given the amount of lines of code the project had after compiling with Koin in comparison to Dagger is something to consider for sure.
Writing all the modules and dependencies in a single file as you did with `AppInjector.kt` would work fine in a very small project, in bigger ones this would be a big problem, you don’t want to have a godlike object keeping track of everything, it would be problematic as multiple teams work with the same file at the same time…
Overall looks like Koin simplifies a lot of the overhead you get to write with Dagger, which as you mentioned takes a lot of time to learn and keep up with the newest features.👏