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

In Parse Need to fetch nested relation data in one call

I am currently working with parse in react native. I have a query that fetches data from a collection which has a property with relation to other collection. Now i want to fetch all these relational data in a single call rather then calling each…
tanuj upreti
  • 123
  • 1
  • 12
0
votes
1 answer

Cant use object from query in onCreateView

Hi i am doing a query and i was able to query the value and put them into a list.here is my code: private void queryChatClass(){ ParseQuery query=ParseQuery.getQuery("Chat"); …
0
votes
1 answer

Saving a user with an already exist email or username causes ParseUser to return wrong value

I have the following code that allows users to update their data: String username = "Any username that is currently already used by another user"; ParseUser currentUser = ParseUser.getCurrentUser(); if (currentUser != null) { …
Alaa Salah
  • 1,047
  • 3
  • 12
  • 28
0
votes
1 answer

How to query a pointer in a ParseObject class?

Hi i made ParseObject which contains a field called Usuario which is a pointer to _User(ParseUser class) ive been trying to query for this value with no success... private void queryConversaciones(){ ParseQuery query =…
Felipe Franco
  • 171
  • 3
  • 15
0
votes
2 answers

Retrieving Array from parse server and displaying the data in a list view

I'm new to android and I need help in retrieving the array that I created in parse server named as "busStops" but I can't figure out where the problem exists in my code ParseQuery parseQuery = new ParseQuery
0
votes
1 answer

Issue comparing two arraylist with ParseObject

im having great difficulties with this. I made a Gridview with a CalendarView which in each position has a date assigned.i iterate it with this code.. for (int n = 0; n < mnthlength; n++) { itemvalue = df.format(pmonthmaxset.getTime()); …
0
votes
1 answer

Parse automatically logs out Android

I am having a strange issue where my app automatically logs me out when I open a certain fragment. I have even tried commenting out all the code to stop this from happening but the issue still occurs. I have included my empty class and XML for the…
0
votes
0 answers

How to Pass Dictionary as Query constraint Parse-Server (Android)

I have a dictionary in the database and I would like my query to have constraints in regards to that dictionary : I tried query.whereEqualTo("skills",dictionary); Any idea if this is achievable in parse server and if yes any clarifications?
Joseph Hajjar
  • 138
  • 2
  • 12
0
votes
1 answer

Android - How to upload an animated GIF file to Parse Server

I'm working on an app that has Parse Server Android SDK, and I know how to convert a video file into a bytes[] array, this is the code I use: private byte[] convertVideoToBytes(Uri uri){ byte[] videoBytes = null; try { …
Frank Eno
  • 2,581
  • 2
  • 31
  • 54
0
votes
2 answers

Android App on API 28 (Pie) devices returns i/o exception while attempting connect to Parse Server on AWS

I have developed android application which uses Parse Server on AWS as back end. Application has login and data browsing capabilities. Everything is working smooth on all devices with API lower than 28. When I updated my Galaxy S9 plus to Android…
0
votes
0 answers

Failed to install 'cordova-admob-sdk'

$ cordova platform add android --nofetch Adding android project... Creating Cordova project for the Android platform: Path: platforms\android Package: com.weyaltech.dailynews Name: Daily_News Activity: MainActivity …
0
votes
4 answers

No Data In Recycler View

I am completely beginner to android so there might be some studpidness in my case. I am trying to make an Instagram clone app. But I am stuck in displaying users feed. I am fetching my data from Parse Server Then its stored in Two ArrayList 1 stores…
0
votes
2 answers

set email verification on bitnami Parse server from android studio

I have been searching day and night for a way to set email verification for my app with its server on Bitnami Parse Server(EC2). To no avail! All I could find was a client asking me to shift my app to back4App. But to switch my app to back4App only…
0
votes
0 answers

No deviceToken and pushType after upgrading to Parse Android SDK 1.17.3

Since we've upgraded to Parse-SDK-Android 1.17.3 we are experiencing issues with the deviceToken and pushType of the installation objects. They both are undefined after the object's creation. We have also tried to downgrade the sdk to 1.17.0, …
Pavel Dimov
  • 1
  • 1
  • 1
0
votes
2 answers

Implementing RecyclerView with parseObject but getting a blank screen

I am trying to implement RecyclerView using ParseObject but on my screen nothing is showing up! Following is the code for the activity where recycler view is to implemented. AdminShowStudentId.java package com.example.Aphexams; import…
1 2 3
8 9