Vivek Modi
04/29/2022, 8:42 AMwhen setting up our modules & their corresponding dependencies I think we should have a rule that we always need to add a classifier declaration. This makes things crystal clear when we revisit the modules. So for example instead of
viewModel { ConsultationViewModel(networkSessionScope.get(), get()) }
we would have
viewModel { ConsultationViewModel(addressRepository = networkSessionScope.get(), consultationsRepository = get()) }
Just makes the solution more readable. I need only for specific files not for whole project