what is the process of mvvm in android

Solutions on MaxInterview for what is the process of mvvm in android by the best coders in the world

showing results for - "what is the process of mvvm in android"
Rose
18 Nov 2016
1The 4 steps of MVVM
2Create Model (aka POJO)
3Create Repository (fetch data from API or DB)
4Create ViewModel (extend ViewModel, get liveData from Repository)
5Create Activity (observe ViewModel & display data)