You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there are a bug at line 104 of JsonHttpResponseHandler.java. At this line calls the deprecated version of onFailure method (with only one parameter) and this force you to override this 3 methods:
public void onFailure(Throwable e, JSONObject errorResponse) {}
public void onFailure(Throwable e, JSONArray errorResponse) {}
and
public void onFailure(Throwable error) {}
when you want to use JsonHttpResponseHandler instead of only two.