Questions tagged [parse-android-sdk]

The Parse Android SDK allows you to store data, manage users, send push notifications, track analytics, and more in just a few lines of code.

Parse Platform Android SDK

The Parse Android SDK allows you to store data, manage users, send push notifications, track analytics, and more in just a few lines of code.

Contribute

132 questions
1
vote
1 answer

Parse and Onesignal push notifications not working together - Android

Usually Parse notifications are received and it works well on my test android app. when i added Onesignal to my project, Parse notification are not received anymore ? What can be a possible conflict ?
MBH
  • 16,271
  • 19
  • 99
  • 149
1
vote
1 answer

Android ParseQuery to find shops having at least one item

I have two related objects (Shop and Item). Item object has a field containing its Shop object. How to create a parseQuery to get all shops having at least one item.
Elnaz
  • 476
  • 1
  • 5
  • 7
1
vote
0 answers

Apparent lag when saving ParseRelation and then retrieving it

So I have a Trip class and Place class that both extend ParseObject and have a many to many relationship between them. So I am using a ParseRelation like so: Trip trip = ... Place place =…
odiggity
  • 1,496
  • 16
  • 29
1
vote
0 answers

Parse Receiver android code after sending push from php

I have a PHP code to send push notification, PHP script returns `{"result":true} but its not displayed on the device. I think I need to write a custom receiver code. I have the Receiver class as: package com.phpand; import…
1
vote
0 answers

Why doesn't the device token field get set sometimes with Parse installation

Noticed that sometimes the deviceToken field doesn't get set on android or ios even though we give permissions on the client. Is there a built in delay or know use cases where the deviceToken doesn't get set with push permissions in parse?
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
1
vote
2 answers

using Parse.Could.AfterSave on adding a relation to a ParseObject

i'm just experiencing parse sdk and i wanted to use cloud code to increment a Number column whenever a relationship between two tables added by client(for example user likes a post) , in parse documentation there is just codes for incrementing a…
1
vote
1 answer

Playing music from Parse.com android

so I'm implementing like music playlist app, my audios are uploaded to Parse.com as mp3 , I want to retrieve those audios .. final Button btn = (Button) v.findViewById(R.id.button); final ParseFile fileObject = object.getParseFile("music"); …
Ran
  • 145
  • 2
  • 11
1
vote
1 answer

ParseFacebookUtils.logInWithReadPermissionsInBackground extremely slow

I am trying to log my user in with a simple Login with Facebook button with Parse Android SDK 1.9.1 using ParseFacebookUtils.logInWithReadPermissionsInBackground but it takes about more than 10 seconds for the callback to fire. I have many other…
1
vote
2 answers

How should I do? ParseQueryAdapter

I want to make SNS android application. Posts that users have posted and relations("Likes") are loaded from my Parse.com server. I succeeded in loading posts using parseQueryAdapter and ListView in a Fragment. But relation ("Likes") query loading…
1
vote
1 answer

parse android disable multiple notifications

(Parse 1.8.0 ANDROID) How I disable multiple notifications? For example , if I send two notifications then appear two icons in phone bar. I want to have only 1 icon.
1
vote
0 answers

ParseRelation won't be created in ArrayAdapter

I'm trying to create a parse relation between Card object and user Object. When user clicks on like button in a row in custom arrayadapter i see "saved" message but relation won't be added on Parse databrowser! here is the code in custom…
1
vote
2 answers

Tracking app opened due to push

The Android docs state that we need to call trackAppOpenedInBackground() from either: The main Activity's onCreate(). The onReceive() method of the BroadcastReceiver which handles the OPEN intent. This raises a problem with opening the push when…
Vaiden
  • 15,728
  • 7
  • 61
  • 91
1
vote
1 answer

Difference between ParseRole and ParseRelation

Can somebody please explain to me the exact differences between a ParseRole and a ParseRelation? I'm trying to figure out which one is more suitable for me to use and so far I can't see many differences. I originally thought that ParseRole was a…
edwoollard
  • 12,245
  • 6
  • 43
  • 74
0
votes
1 answer

Parse internally causing error "Cannot resolve symbol 'okhttp3'"

I am developing an Android application using the Parse Server. I implemented the basic requirements using the documentation from the Parse Android SDK. But the Parse SDK internally causes me to get the following errors: Cannot resolve symbol…
Sercan
  • 4,739
  • 3
  • 17
  • 36
0
votes
0 answers

RecyclerView only shows items after Swipe Refresh

I am trying to fetch data from my Parse database and display it into my RecyclerView. Upon entering the Fragment, the RecyclerView displays no data. It isn't until I Swipe Refresh the feed that the items are accurately displayed in the…
1 2
3
8 9