Skip to content

Instantly share code, notes, and snippets.

View kvarela's full-sized avatar

Karim Varela kvarela

View GitHub Profile
@fdoyle
fdoyle / CustomStringRequest.java
Last active January 19, 2018 02:32
Easy to use volley Request. Allows for get, post, and put, along with custom headers.
package com.example.android.api;
import com.android.volley.*;
import com.android.volley.toolbox.StringRequest;
import com.google.gson.Gson;
import java.io.UnsupportedEncodingException;
import java.util.Map;
/**