A detailed guide on developing Android apps using the Clean Architecture pattern
Dario Miličić
53243

Thanks for the answers Dario!
One more thing is still bothering me, almost in any Clean Architecture example the presenter uses an interactor then if it was successful transforms data (if needed) and delivers that data to some View interface. What If my presenter should use two interactors to handle specific use case, it’s like to accomplish one bigger use case I need to run first interactor and then when it ends I should run thesecond, however in my opinion if I use those two interactors that way in my Presenter I would mix buisness logic with presentation, am I right? How to handle this type of use case? Should I create another interactor that would connect those two together?
PS I’m looking forward for your next article