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

Parse Andorid SDK: remove label from a local pin

I'm using Parse SDK's localDataStore to implement offline-capable Android app. When users create new objects, they're pinned locally with a special label. When it's time to sync offline changes to the server, I search for all objects pinned with…
Vasiliy
  • 16,221
  • 11
  • 71
  • 127
0
votes
1 answer

PositionalDataSource returns nothing from Parse Server databse

I'm trying to load Products items from a Parse Server database using data source type of PositionalDataSource()to be able to fetch pages of items while scrolling down. This what i've done so far : My PositionalDataSource() class class…
0
votes
1 answer

Parse Android SDK - Querying based on Pointer in Android SDK

The current questions on the internet about this didn't help (it's no duplicate). Currently I'm experimenting with the GameScore example class. Simply searching for a value in a column (here it's 1337 in the column "score") was as easy as this (in…
0
votes
1 answer

Getting errors for Password reset function in parse

I am programming an Android app that uses parse in the back end. I am trying to implement a "Forgot Password" function. I used the Parse Documentation linked here. So i added this to my app. i did a basic one with just the code to see if it works.…
Sami-M
  • 57
  • 6
0
votes
0 answers

Will saveEventually() work if Parse server itself is down?

So this is my knowledge of how client-server interaction works. Client --> Parse Server ---> MongoBD (The request went through and got saved) MongoDb ---> Parse Server ---> Client. (Callback to client). So as far as I know saveEventually has no…
Tanzim Chowdhury
  • 3,020
  • 2
  • 9
  • 21
0
votes
0 answers

unable to update back4app database in android studio

So I've linked my android app to back4app parse server. According to their documentation when I run the following code a class is supposed to be created in the database. However Android studio shows the following errors: cannot resolve symbol…
0
votes
2 answers

The SDK directory '/Users/username/Library/Android/sdk' does not exist

I was running Azure Pipeline build for react native app in which i am using gradle for android build and got this error: FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':app'. > The SDK directory…
0
votes
1 answer

How to convert/revert ParseObject to Json

I need convert ParseObject to Json and in other time convert the Json back in ParseObject,but when I use Gson for example, don't work. I try any forms,but no have success,my class is this: class MyClass{ private var …
Paulo César
  • 806
  • 6
  • 8
0
votes
0 answers

How to get all the column names of a class in Android parse.com Java

I want to get all the column values for a single row in parse.com without using parseObject.get(String key) for each key as I have many. Is there a way to get all the column names as an array? Or perhaps iterate over all the columns for a single row…
0
votes
1 answer

My application crashes when I press my signup Button

When i Run the application application is crashing (Did i written the code wrong)? Here is my post: public class SignUP extends AppCompatActivity implements View.OnClickListener { private EditText edtEmail,edtUserName, edtPassword; private Button…
0
votes
2 answers

Parse Server: Remove old profile image associated with a user

I am using File System Storage adapter to save uploaded files on the parse server. In my app each user can have profile photo. when the user wants to change his photo, the old one should be deleted from the server. But the old image remains…
0
votes
1 answer

Query on local datastore with unsaved pinned object of id null in Parse SDK Android

I'm using Parse sdk for android. In offline mode, I created some parse objects and pinned them using ... ParseObject.pinAll(cartItems) orderObject.pin() //orderObject.objectId() returns null! ... Later when i query cartItems in…
0
votes
0 answers

Unable to get image after reinstalling the app

I am not able to get the images stored in Parse-Server as a file, once I reinstall the app. It works fine while a user is logged in but once the app is uninstalled only files are unable to access.It shows exception saying :- File doesn't exist . And…
0
votes
1 answer

Parse server (Back4App) cloud function httpRequest returns 'invalid function' error

I am trying to send FCM notifications directly on the firebase POST url. When i comment out the httpRequest block, the function executes properly. When i uncomment the block, it starts to give me 'invalid function (141)' error on Android app. The…
0
votes
0 answers

Progress bar invisible with Query Back4app

I am having great trouble with this. I half my database in Back4app and the first GridView I load are elements from the server however they take some time to load.So i was researching Progress Bar and i handle my relative layout using visibility.i…
1 2 3
8 9