Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot resolve com.parse.ParseQueryAdapter

My current setup :

  • OS : windows 7
  • IDE : Android Studio (with updated SDKs)
  • Parse jar (v 1.10)

I am trying out an example for ParseQueryAdapter, and I run into this error on my IDE : import com.parse.ParseQueryAdapter; -> cannot resolve symbol ParseQueryAdapter

I want to try something similar to this example, and the import does not seem to go through because of the error.

If you need anymore information, please leave comments & I will respond.

PS : I am able to add com.parse.ParseObject without errors.

like image 354
sudhishkr Avatar asked Mar 22 '26 07:03

sudhishkr


2 Answers

In your libs folder you'll find Parse-1.4.1.jar file. Right click or control+click on it then 'Add as Library...'

Edit: Parse-1.10 does not have ParseQueryAdapter. You have to use Parse-1.4.1, which is included in that example.

like image 141
Kabir Avatar answered Mar 23 '26 22:03

Kabir


ParseQueryAdapter was removed from the official Parse SDK and moved onto the Parse-UI libraries..

You can install them on via this link: https://github.com/ParsePlatform/ParseUI-Android

like image 44
Linxy Avatar answered Mar 23 '26 21:03

Linxy