Can you explain about MVP architecture?
Anónimo
MVP stands for Model View Presenter which is an architecture to build software. The model is the data for UI, View is the UI, and the presenter is the business logic layer of the application which connected between the view and the model. So the view cannot access model directly, only through presenter.