I am trying to hit a rest service using Volley.
public class AuthFunctions { private static final String LOGIN_URL = \"http://10.0.2.2:8080/stewayservic
use retry policy like this
request.setRetryPolicy(new DefaultRetryPolicy(20 * 1000, 2, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT)); requestQueue.add(request);