ParseLiveQuery-Android icon indicating copy to clipboard operation
ParseLiveQuery-Android copied to clipboard

Parse LiveQuery client for Android.

Results 26 ParseLiveQuery-Android issues
Sort by recently updated
recently updated
newest added

### Issue This repo depends on the Parse Android SDK and changes in there can break this repo. One example is the transition to the internalized bolts dependency https://github.com/parse-community/Parse-SDK-Android/issues/1036. ###...

type:feature

For parse setups that use a client key, the live query client will never connect appropriately as the android library doesn't pass in the client key. See: https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/136

Using the state.getSelectedKeys() to add fields support

Crashes in: ParseLiveQueryClientImpl.java:218 on webSocketClient.send(jsonString); It it by design?

hmy_server | /home/node/app/node_modules/parse-server/lib/ParseServer.js:218 hmy_server | throw err; hmy_server | ^ hmy_server | hmy_server | RangeError: Invalid WebSocket frame: RSV2 and RSV3 must be clear hmy_server | at Receiver.getInfo (/home/node/app/node_modules/parse-server/node_modules/ws/lib/receiver.js:160:14) hmy_server...

ParseQuery query = ParseQuery.getQuery("Chat"); client = ParseLiveQueryClient.Factory.getClient(); SubscriptionHandling subscriptionHandling = client.subscribe(query); What is this error? E/ParseLiveQueryClient: Error handling message com.parse.LiveQueryException$InvalidResponseException: {"op":"error","error":"Key in request is not valid","code":4,"reconnect":true} at com.parse.ParseLiveQueryClientImpl.parseMessage(ParseLiveQueryClientImpl.java:268) at com.parse.ParseLiveQueryClientImpl.access$000(ParseLiveQueryClientImpl.java:24)...

ParseObject store = ParseObject.createWithoutData("xxxxx", "njEi4qBLVG"); ParseObject disheType = ParseObject.createWithoutData("xxxxx", y7yN4peg6u); ParseQuery clsRecipeQuery = new ParseQuery("xxxxx"); ParseQuery classifyQuery = new ParseQuery("xxxxx"); ParseQuery myMenuQuery = new ParseQuery("xxxxx"); myMenuQuery.whereEqualTo("xxxxx", disheType); myMenuQuery.whereEqualTo("xxxxx", store); myMenuQuery.whereEqualTo("xxxxx",...

Although it is mentioned in link below that the follow constraints work for LiveQuery, it doesn't. 1) whereLessThan, whereGreaterThan, whereLessThanOrEqualTo, whereGreaterThanOrEqualTo `parseQuery.whereLessThan("key", value);` 2) 2 equalTo constraints on 2 different...

I have following live query for subscribing to class objects that do not belong to current user: ``` ParseQuery parseQuery = ParseQuery.getQuery("myclass"); parseQuery.include("user"); parseQuery.whereNotEqualTo("user", ParseUser.createWithoutData(ParseUser.class, ParseUser.getCurrentUser().getObjectId())); SubscriptionHandling subscriptionHandling = parseLiveQueryClient.subscribe(parseQuery);...

I am trying to sync Gradle files with 1.1.0 version and Gradle build was a success but it's giving me an error while launching activity(**com.parse.AbstractController$1 already exists**). So I have...