use of app.philm.in.network.PhilmTrakt in project philm by chrisbanes.
the class NetworkProvider method provideTraktClient.
@Provides
@Singleton
public Trakt provideTraktClient(@CacheDirectory File cacheLocation) {
Trakt trakt = new PhilmTrakt(cacheLocation);
trakt.setApiKey(Constants.TRAKT_API_KEY);
trakt.setIsDebug(Constants.DEBUG_NETWORK);
return trakt;
}
Aggregations