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

How to Implicitly get ParseUser's Write ACL

implicitly meaning considering the Roles the user is in, get me the write access for this user on this object, and my approaches are inefficient, I think: Cloud code function for querying the user's roles then checking whether the user or his roles…
0
votes
1 answer

OnMarkerClickListener shows the same image for all markers

I have a function that gets location and its image from a parse server in a for loop then adds them as markers on the google map, the thumbnail as markers icon is working just fine the problem is when I click on any marker it shows the last image…
0
votes
2 answers

Parse Android SDK is not allowing delete request and returns [MongoError: exception: Mod on _id not allowed] in the log

The Parse android SDK does not allow updating of a column in the user table while I am using getCurrentUser() method to mark it as authenticated. When I call saveInBackground() on it I get the following error in the log file: Uncaught internal…
Debugger
  • 491
  • 4
  • 21
0
votes
2 answers

Returning a String from ParseQuery method is null

I want to return a String to this statement: String replyUsername = queryUsernameById(objectId); Here is the query method: public String queryUsernameById(String objectid) { final String[] username = {null}; ParseQuery
Martin Erlic
  • 5,467
  • 22
  • 81
  • 153
0
votes
0 answers

Pagination using setskip method and ParseQueryAdapter in Parse android

I want to implement Pagination using setskip method. I am using recycle view and want to load more items when user scrolls. I do not want to use ParseUeryAdapter so is there anyway so that I can do this using setskip method? public class…
0
votes
0 answers

Pagination in recyclerview using setskip in Parse

I want to implement Pagination using setskip method, i am using recyclerview and want to load more items when user scrolls , i do not want to use ParseUeryAdapter so is there any way so that i can do this using setskip method, as i am new in android…
0
votes
1 answer

Could not upload image using Parse Server and Android

I have error after migration to Parse Server with image upload: "Invalid file upload". Use android-parse 1.13.1 and parse-server 2.3.2. Adding Content-Type "image/png" to new ParseFile do not solve problem. Code: private ParseFile…
0
votes
1 answer

Parse.com Show all object from every Relation in Query

I want to show all object from every Relation in following Query. But it still empty. I tried with the this Code, but it did not work. I hope someone can help me. Thanks in advance mData = new ArrayList<>(); ParseQuery receiver…
0
votes
1 answer

Passing a parse query to another activity?

ParseRelation p = country.getRelation("view"); ParseQuery P2 = p.getQuery(); So is it possible to intent the P2 query in the next activity ,so that we can use this query in next activity to fetch the data from parse database.
Saurabh
  • 136
  • 1
  • 1
  • 11
0
votes
0 answers

How to intent a parse query?

In parse i have a class A which has a column (relation) named - view, which relates to class B( contains different images with different object id's).Now what i want to achieve is that : in android i have a activity(A) which has a recycle view which…
Saurabh
  • 136
  • 1
  • 1
  • 11
0
votes
1 answer

Which thread do we get the call back on when calling findInBackground() on Parse android API

I have been writing an android application using the parse-server as backend as a service for my application. When I query a class to get the objects from my server, I do it using ParseQuery.findInBackground()and then receiving the callback like…
Swapnil
  • 1,870
  • 2
  • 23
  • 48
0
votes
0 answers

User is unable to login with Facebook after app update on Android with Parse SDK

I am using Parse SDK on my Android device. In our app, user can login with Facebook. Everything works fine if the user install the app first time and tries to login with Facebook. However, if the user has already installed and logged in app and…
0
votes
1 answer

Android parsefile url is changing to http

When I upload a ParseFile the link is changed to http for some reason. And because of this during the download the link goes to nginx which does a 301 redirect to https. This results in a "moved permanently" exception in the Android code and the…
0
votes
1 answer

Parse Android fails to download image with a moved permanently error

I am getting the following exception when trying to download a ParseFile using getData() method. com.parse.ParseException: Download from S3 failed. Moved Permanently at com.parse.ParseAWSRequest.onResponseAsync(ParseAWSRequest.java:43) at…
0
votes
0 answers

ParseQueryAdapter Error

I've been looking for awhile on how to fix this error but I haven't had any luck. I have an app that uses a nav drawer and pulling in a fragment with a custom list view. I'm having a error with the ParseQueryAdapter call in the Upcoming Events…
1 2 3
8 9