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; // ww w.j a v a 2s. c om import android.app.Application; public class VolleyApplication extends Application { @Override public void onCreate() { super.onCreate(); HttpClientSingleton.init(new VolleyHttpClient(getApplicationContext())); } }