use of app.philm.in.network.PhilmTmdb in project philm by chrisbanes.
the class NetworkProvider method provideTmdbClient.
@Provides
@Singleton
public Tmdb provideTmdbClient(@CacheDirectory File cacheLocation) {
Tmdb tmdb = new PhilmTmdb(cacheLocation);
tmdb.setApiKey(Constants.TMDB_API_KEY);
tmdb.setIsDebug(Constants.DEBUG_NETWORK);
return tmdb;
}