Is there a way I could disable the Volley cache management? My app is using Google Volley library to manage the transport layer, but I have my own cache manager implementati
You can create your RequestQueue from constructor and pass a NoCache object as the first parameter. The second parameter is a network transport based on your choice of AndroidHttpClient or HttpURLConnection.
RequestQueue queue = new RequestQueue(new NoCache(), new BasicNetwork(new HurlStack()));
For more details see this documentation.
According to the documentation, BasicNetwork is Volley's default network implementation.