Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 1.56 KB

README.md

File metadata and controls

15 lines (13 loc) · 1.56 KB

WorkShop Android

In this workshop we gonna make an application that list your favorite places.

This project gonna be made in 4 steps:

  • Step-1 - Creation of project with main screen that contains the list of your favorite places, creation of form screen to add your favorite places that contains name and description
  • Step-2 - Continuation of Step-1, here we gonna work with RecyclerView to finally have our list of places in the main screen and implements all the things we need to make it works
  • Step-3 - Until now, we just call the form to add a new place, get the result and put it on the list at the main screen, but we want to persist it, for that we gonna use Room.
  • Step-4 - In this step we decide to use MVVM, an architecture based on data streaming that helps us to have well defined layers with single responsibility.