I want to make a search to a row in the database. I put this query in my code
ParseQuery<ParseObject> query_names = ParseQuery.getQuery("PhoneBook");
query_names.include("Numbers");
query_names.whereStartsWith("Name", searchString.toLowerCase());
query_names.setLimit( 20);
query_names.findInBackground();
I got this exception
com.parse.ParseRequest$ParseRequestException: bad json response
This exception is from the parse version in my buid.gradle i have used a compile like this:
the best way is to put like this
and it will work correctly