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
0
votes
0 answers

Parse.com android ParseRelation

I am developing SNS Application. I tried to use ParseRelation. I created ParseUser and call the getRelation() function. I put posts and call currentUser.saveInBackground(); I checked the saved relation posts in Parse.com Cloud. But when I call…
0
votes
2 answers

ParseUser role on individual object - Parse.com

I have 2 classes in Parse, a User class and a Group class. The idea is simple. A logged-in user will be able to create a new Group object, and an array relationship will form between that user and that newly created group. That user can now invite…
Spike Flail
  • 683
  • 3
  • 8
  • 17
0
votes
0 answers

Instead it will show two Push notifications that will show two in one like whatsapp

Now, when I send 2 push notifications ( I use parse android) I am showing on my device 2 icons in the phone bar(2 icons, 2 messages). I want to see only 1 icon and 2 messages like Whatsapp. How I do this? Thanks
Ron
  • 51
  • 4
0
votes
1 answer

Parse android crashes not found the enable command

To enable parse crashes I need to write the command: ParseCrashReporting.enable(this); But eclipse doesnt find the command. The error: https://i.stack.imgur.com/1Tk6T.png what I need to do? thanks!
Ron
  • 51
  • 4
0
votes
0 answers

android application update automatically value from parse database

How can I update real-time application data from the database ? For example, I pull out some text from a parse database application and displays it , I want to do that when I change the text in a database it automatically changes in the…
Ron
  • 51
  • 4
0
votes
1 answer

When to use a pointer and when to use ParseRelation in this example

I'm struggling with keeping things straight for a chatRoom example I'm working on. Given: UserA UserB ChatRoom01 In this example when UserA enters ChatRoom01, I want to create an association between the two. Now since ChatRoom01 already exists, I…
Noiroi
  • 27
  • 5
-1
votes
1 answer

java.lang.NullPointerException: Attempt to invoke virtual method 'java.io.File com.parse.ParsePlugins.getParseDir()' on a null object reference.parse

Hi currently i am working on project including parse server,and after adding parse library to my project ,when i run it it shows this error ( java.lang.RuntimeException: Unable to start activity…
-1
votes
1 answer

ParseObject Value persisted even after activity destroyed

I launch an activity passing a parseobject to next activity In next activity i make a query and save the list of objects as class field variable. I change some fields of the objects from query result. eg object.putint("abc",122); // I change it from…
Omkar T
  • 755
  • 8
  • 19
-1
votes
1 answer

List .contains ParseUser always FALSE

I have an if statement written below: //Set Friend Action OnClickListener & Image if (ParseUser.getCurrentUser().getList("friendsArray").contains(searchResultsList.get(position))) { …
-2
votes
1 answer

Set Limit to Zero in Parse Counter

I'm trying to set my counter in parse to not go below zero when the score is being decremented, at the moment it can go to negative numbers. How can I set the minimum limit to be zero? This is what I've managed to do so far:…
Zack
  • 472
  • 7
  • 16
-2
votes
1 answer

how to get parse relation data

I am new to parse with android I am having query that brings all data of a class as object. and there is another class with two relation columns every time I get the relation table a new query is fired in that case if there are too many rows in that…
Harish Chauhan
  • 103
  • 1
  • 1
  • 9
-3
votes
2 answers

Activity returning null and producing NullPointerException even though I implemented it

I have a class extending ParseQUeryAdapter so I can use the notifyDataSetChanged feature. The adapter class is called mainAdapter. Here's my notifyDataSetCHanged method in the mainAdapter: @Override public void notifyDataSetChanged() { …
Ali Bdeir
  • 4,151
  • 10
  • 57
  • 117
1 2 3
8
9