Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 682 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 682 Bytes

Popular Movies stage 1

This is the stage one of a movies application made for an Udacity Course. This app uses the data provided by The Movie Database.

Setting it up with your own API KEY

Put your api key in the api/APIClient class:

public class APIClient implements RequestInterceptor {
    public static  final String API_KEY= "{your API key here}";
    ...
}

And you're good to go.

Libraries