Back to project page NetworkFacade.
The source code is released under:
Apache License
If you think the Android project NetworkFacade listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.saguinav.networkfacade.sample; /* w w w . j a v a 2 s .c o m*/ import android.app.Application; import java.io.IOException; public class OkHttpApplication extends Application { @Override public void onCreate() { super.onCreate(); try { HttpClientSingleton.init(new OkHttpClient(getApplicationContext())); } catch (IOException e) { e.printStackTrace(); } } }