Skip to content

mrabelwahed/MVVM-Demo

Repository files navigation

MVVM-Demo

This demo for MVVM Design pattern for android

About MVVM

MVVM is one of the best design patterns for android developemnt as Presentation layer according to clean Architecture by Uncle Bob. MVVM is an abbreviation of Model View Veiw model where your presentaion layer will be divided into three packages
Model : the business of your app
View : is your activity/fragment where UI Exists and they send events to View model and receive notifications form view model
View Model : in the middle of view and model

This repo contains the following branches

  • master: contains MVVM architecture with out android arch components or repository
  • feature/mvvm-arch: contains MVVM architecture with android arch components only
  • feature/mvvm-arch-repository: contains MVVM architecture with android arch components and repository

Used Libraries

  • Rxjava2
  • Retrofit
  • Gson
  • Databinding
  • Android Architecture Components
  • Realm

About screen List screen

MIT License

Copyright (c) 2018 Mahmoud Ramadan

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE