Skip to content

Instantly share code, notes, and snippets.

@jaredsburrows
Created September 26, 2016 03:48
Show Gist options
  • Save jaredsburrows/4fed50206acd73ffdd3fd76623674c1d to your computer and use it in GitHub Desktop.
Save jaredsburrows/4fed50206acd73ffdd3fd76623674c1d to your computer and use it in GitHub Desktop.
/**
* @author <a href="mailto:[email protected]">Jared Burrows</a>
*/
@Module
public class NetModule {
/**
* Date format for requests. Eg. 2016-06-19T13:07:45.139Z
*/
private static final String DATE_FORMAT = "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'SSS'Z'";
/**
* HTTP client request time out.
*/
private static final int CLIENT_TIME_OUT = 10;
@Provides @PerActivity public Gson provideGson() {
return new GsonBuilder()
.setDateFormat(DATE_FORMAT)
.create();
}
@Provides @PerActivity public OkHttpClient provideOkHttpClient() {
return new OkHttpClient.Builder()
.addInterceptor(new HttpLoggingInterceptor()
.setLevel(HttpLoggingInterceptor.Level.BODY))
.connectTimeout(CLIENT_TIME_OUT, TimeUnit.SECONDS)
.writeTimeout(CLIENT_TIME_OUT, TimeUnit.SECONDS)
.readTimeout(CLIENT_TIME_OUT, TimeUnit.SECONDS)
.build();
}
@Provides @PerActivity public Retrofit.Builder provideRetrofit(final Gson gson, final OkHttpClient okHttpClient) {
return new Retrofit.Builder()
.addCallAdapterFactory(RxJava2CallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create(gson))
.client(okHttpClient);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment