Skip to content

SImple Android application showcasing latest movies

License

Notifications You must be signed in to change notification settings

BrianLusina/MovieReel

Repository files navigation

MovieReel

CircleCI Codacy Badge codecov

Simple Android application which features your latest movies and series

Getting started

Clone the repo

$ git clone https://github.com/BrianLusina/MovieReel.git

Create a gradle.properties file at root of project and include the following:

MovieDbKey="<YOUR_MOVIE_TMDB_KEY>"
IMAGE_BASE_URL="http://image.tmdb.org/t/p/"
IMAGE_SECURE_BASE_URL="https://image.tmdb.org/t/p/"

Get your Movie DB key from here

That will be it for the project setup.

Running test

Most of the tests are unit test, for quick and easy testing. Run them with:

./gradlew test

To run instrumented tests:

./gradlew connectedAndroidTest

Make sure you have a connected debuggable device, or an emulator running.