Hello Guys, I happen to have a project, in which i used the Volley library. I then discovered after volley gets the response from a url i tends to cache it. So all i want now is to clear the cache for the specific url.
I tried this:
AppController.getInstance().getRequestQueue().getCache().remove(url);
and also this:
AppController.getInstance().getRequestQueue().getCache().invalidate(url, true);
I got this answer here
Thanks in anticipitation.