Skip to content

Latest commit

 

History

History
57 lines (40 loc) · 3.71 KB

File metadata and controls

57 lines (40 loc) · 3.71 KB

Android Networking and Persistence samples using The Movie DB API

This is an Android demo application for displaying the latest box office movies using the The Movie DB API.

Overview

Purpose of this app is to demostrate usage of various networking and persistence libraries in Android

Nerworking libraries samples

ORM libraries samples

  • DBFlow - A robust, powerful, and very simple ORM android database library with annotation processing

App features

Gif

alt tag

Installation

Quick note is that you must provide your own API key for The Movie DB API in order to use this demo. To get an API key, you need to register for an account (or sign in). Once you have the key, put the key into the API_KEY constant in the ./app/src/main/res/values/secrets.xml file:

<resources>
    <string name="api_key">XXXX</string>
</resources>

Once you've setup the key and imported the project into Android Studio, you should be all set.

Attribution

This code was created by Shrikant Pandhare in 2016 for use in CodePath sessions.