Volley Bug: Repeating A Request When Verbose Logging Is Enabled Fails
When trying to repeat a request after it has completed the Volley library throws an IllegalStateException if you have debug enabled (log.tag.Volley VERBOSE) because VolleyLog.Marke
Solution 1:
I found a solution: Disable all volley debug logs.
VolleyLog.DEBUG = false;
Post a Comment for "Volley Bug: Repeating A Request When Verbose Logging Is Enabled Fails"