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
5
votes
1 answer

com.parse.ParseObject cannot be cast to

I am developing application which having Parse Platform. To fetch data I am calling ParseCloud.callFunctionInBackground function. I have registered the Parse and its sub class into the Application class like below : public class App extends…
Ronak Joshi
  • 1,553
  • 2
  • 20
  • 43
5
votes
1 answer

Android ParseQueryAdapter pagination with RecyclerView.Adapter

I am trying to implement CardView in a list using RecyclerView.Adapter. Creating cards in a list was pretty straightforward using RecyvlerView.Adapter. I am using parse.com as my back end so queries for cards data are made using its APIs. Now I want…
4
votes
2 answers

java.lang.IllegalArgumentException: invalid type for value: class android.graphics.Bitmap

Hello i am adding to parse Platform a bitmap in a File but having some trouble here at the beggining it was working fine but after the second or third try i got messed up. i suppose that it is because the put method does not receive bitmaps. But i…
3
votes
2 answers

Parse server dashboard login

So, I am new to Android Studio. I'm following an online course step by step. I'm using ParseServer on AWS. I've managed to get my appId, etc. and can connect with a Java SSH Client directly from my browser. My app can successfully store information…
3
votes
1 answer

Querying a Parse database to get the data from one single column within a Parse data Class

HelloI'm playing around with Parse, I've managed to create a cloud database with two classes/tables, Users and Posts, I'm able to register and login users and allow them to make posts to the database. I'm now trying to work out how to query the…
Paul Alexander
  • 2,686
  • 4
  • 33
  • 69
3
votes
1 answer

Stack notification in parse

How can I do stack notifications in parse android? I send the push messages for the device, example: ParsePush androidPush = new ParsePush(); androidPush.setMessage("TEST"); androidPush.sendInBackground(); For example , if I send two…
3
votes
2 answers

Implementing OR Condition using Parse Android SDK?

I am new to Parse and i am working on a Project that uses Android PARSE Sdk so i was wondering on how can i make a where query with or condition using the android sdk. I want to make a query like this [Psuedo code] Select * from employ where…
Sheraz Ahmad Khilji
  • 8,300
  • 9
  • 52
  • 84
2
votes
1 answer

"Could not find bolts-tasks" error after upgrading Parse Android SDK from 3.0 to 4.2

I'm trying to upgrade an existing project from Parse Android SDK from 3.0 to 4.2. I have the below dependencies in my app's build.gradle an in another module's build.gralde file called foundation: implementation…
ChrisBorg
  • 1,418
  • 17
  • 27
2
votes
1 answer

Parse Server - select a few fields from included object

Is it possible to use .select(JS) / selectKeys(Android) ONLY on the object which is retrieved via .include()? For example, Class A has a pointer to class B. When I query for Class A, I want all the contents of Class A and only a few selected fields…
2
votes
1 answer

Using parse android sdk throw an exception

I tried initializing Parse Android SDK in my app but anytime I try to save an object parse throws a NullPointerException 06-27 15:22:54.643 25869-25869/glassstones.net.creche E/APP: java.lang.NullPointerException: value for name…
Mr Smith
  • 331
  • 1
  • 4
  • 14
2
votes
0 answers

ParseTraverser crashes on a ConcurrentModificationException

So we're running into this really weird, seemingly random crash in the Parse SDK for Android. Normally we would attribute this to maybe a bug in the Parse platform, but it's happening pretty consistently to all our users, and researching the issue…
Tim Kranen
  • 4,202
  • 4
  • 26
  • 49
2
votes
0 answers

ParseUser.getCurrentUser() is null once in a while even though logout is not called

Problem: Once the user has successfully logged in to the app, once in a while (no definite pattern has been identified as to when this happens), ParseUser.getCurrentUser() becomes null even though logout is not called. Details: We are using Parse…
2
votes
1 answer

Download image file from Parse into Android

I'm creating an app (basic, low-level clone of Instagram) where a user can see images other users have posted. However, I can;t seem to download the image from Parse into Android. I attach my code. I just want to let you know I do NOT get an error,…
2
votes
1 answer

Unable to create an audience on Parse

I am trying to get my android app setup to send push notifications via Parse. build.gradle compile 'com.parse:parse-android:1.13.0' Application.java //in onCreate Parse.initialize(this, "appId", "clientKey"); …
2
votes
1 answer

ParseQueryAdapter Cannot reslove symbol

I am using Parse Library: compile 'com.parse.bolts:bolts-tasks:1.3.0' compile 'com.parse:parse-android:1.11.0' I am getting error with ParseQueryAdapter cannot resolve symbol.
Sagar Atalatti
  • 486
  • 1
  • 8
  • 21
1
2 3
8 9