Vivek Modi
04/29/2022, 8:46 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 just want to check only specific file, not in whole projecteygraber
04/29/2022, 2:38 PMVivek Modi
04/29/2022, 2:39 PM