Skip to content

jaamiiss/MovieDB

Repository files navigation

Original project can be found here

https://github.com/sourcestream/moviedb-android

What is it?

Movie DB is an Android app with open source code. Movie DB finds information about your favourite movies, TV shows and actors.
Movie DB uses TMDb API which has large collection of information about movies, TV shows and actors. We offer friendly and intuitive user interface. You can view information such as: trailers, images, credits, known for, overview, biography, etc. You can search your favourite actor, movie or TV show. Browse movies by specific genre and more!


Getting started

  1. First you need to have installed Android Studio on your computer. You can download it from here.

  2. Download the project

git clone (original project) https://github.com/sourcestream/moviedb-android.git


> git clone https://github.com/fridaysyckness/MovieDB.git
  1. After you download the project open Android Studio. From there choose Open an existing Android Studio project or File -> New -> Import Project..
  2. Open the Movie DB folder that was just cloned from git.
  3. Wait until Android Studio finishes building and indexing.
  4. Proceed to configuration

Configuration

The configuration file is MovieDB.java, located in the package de.sourcestream.movieDB:

......
public static final String url = "https://api.themoviedb.org/3/"; // main url for the app
public static final String key = "yourTMDBkey"; 
public static final String imageUrl = "https://image.tmdb.org/t/p/"; // used to load movie, TV and actor images
public static final String trailerImageUrl = "http://i1.ytimg.com/vi/"; // used to load trailer images
public static final String youtube = "https://www.youtube.com/watch?v="; // used to load trailer videos
public static final String analyticsKey = "yourGoogleAnalyticsKey";
.....

In order to use MovieDB you need to get your own key from TMDb. You can do that by clicking here.
After you get key replace the string key with your own key.
Now you can run the app by clicking Run -> Run 'app'.

If you plan to use Google Analytics replace the string `analyticsKey` with your own key.

You can find list of the available methods for movies, TV and actors from TMDb API Documentation [here](http://docs.themoviedb.apiary.io/#).

Environment

Build Status
This project has been build with Android Studio 2.2.3
SDK Build Tools version 25.0.2
Minimum SDK version for the app is 17 (Android 4.2, 4.2.2).
Target SDK version for the app is 25 (Android 7.0).
Movie DB is supported currently for phones only, but you can run it on tablet.
Supported devices: 4709. You can see the full list here.

Libraries

Todo

Contact


This project is developed by sourcestream GmbH.
If you have any questions please do not hesitate to contact: info@sourcestream.de

About

MovieDB Using TMDb API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages