Im working through the tutorial given here and im stuck at the section of code posted below:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_list_users);
}
//display clickable a list of all users
private void setConversationsList() {
currentUserId = ParseUser.getCurrentUser().getObjectId();
names = new ArrayList<String>();
ParseQuery<ParseUser> query = ParseUser.getQuery();
query.whereNotEqualTo("objectId", currentUserId);
query.findInBackground(new FindCallback<ParseUser>() {
public void done(List<ParseUser> userList, com.parse.ParseException e) {
it is failing on ParseQuery<ParseUser> query = ParseUser.getQuery();
with
Error:(53, 14) error: cannot access Task class file for bolts.Task not found
I'm having difficulty following this (knowing what files these code chunks go in) as im totally green at android dev.
Can someone tell me what is going wrong?