Skip to content

Instantly share code, notes, and snippets.

@patrykpoborca
Created August 27, 2015 06:48
Show Gist options
  • Save patrykpoborca/69f8795b43562047938a to your computer and use it in GitHub Desktop.
Save patrykpoborca/69f8795b43562047938a to your computer and use it in GitHub Desktop.
@Module
public class NetworkModule {
@ApplicationScope
@Provides
protected OKHttp providesOkHTTP(){
return new OKHttp();
}
@ApplicationScope
@Provides
protected Retrofit providesRetrofit(OKHttp okHttp, @Named(Constants.MAIN_THREAD) Scheduler mainThread) {
return new Retrofit(okHttp, mainThread);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment