gilgoldzweig / android-mvp-movies-app

This is a movies Android sample app in java. It shows basics of MVP architectural pattern.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

android-mvp-movies-app

This is a movies Android sample app in java. It shows basics of MVP architectural pattern.

Architectural approach: Model-View-Presenter (MVP)

gitDiagramCapture

Project layer structure

  1. Data layer: It contains POJOs and means to get Data from cloud or local storage.

  2. Domain layer: It contains all business logic and interact between Data and Presentation layer - via interface and interactors.

  3. Presentation layer: It contains Activities, Fragments and views, which will only handle rendering views and will follow MVP pattern.

Used libraries:

  1. Retrofit
  2. Gson
  3. Picasso
  4. RoomDatabase

Used data from:

  • themoviedb - A database for movies and TV shows.

Demo screenshot

Contributing

If you want to contribute to this project check if there are any open issues or just send a pull request and I'll do my best to look at it

License

  MIT License

Copyright (c) 2018 Julie Dai

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
SOFTWARE.

About

This is a movies Android sample app in java. It shows basics of MVP architectural pattern.


Languages

Language:Java 100.0%