Please, does Volley automatically add my GET params to the URL? For me it\'s not working so and also when looking into sources, I just cant find any call of the getParams me
As for Itai Hanski answer, this is one example to implement that:
for(String key: params.keySet()) { url += "&"+key+"="+params.get(key); }