I\'ve seen others come across this problem, but none of the posts have been able to assist me. I\'m attempting to use Volley for my REST call library, and when I\'m attempti
You need to check if the server response is not empty. Maybe it could be a emtply String "".
if (response.success()) { if (response.getData() == null) { return null; } else if (response.getData().length() <= 0){ return null; } // Do Processing try {