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

ParseLiveQuery updating a list

Hello at the moment I am trying to update a list in real-time creating a chat app. At the moment I am trying to query with this method ... private void changeChatLive(String chat) { listaDeMensajes.clear(); ParseQuery parseQuery…
Felipe Franco
  • 171
  • 3
  • 15
0
votes
1 answer

The Parse current user is not deleted after app reinstalled

Users reported to us that they uninstalled the app, then reinstalled it and they were immediately transferred to the Home screen, instead of the Login screen. The thing is, since they don't login they don't have a Session token and hence, they can't…
Sotiris Kaniras
  • 520
  • 1
  • 12
  • 30
0
votes
1 answer

How to use variable obtained from a parse method in onCreate

I am having lots of trouble with variable and parse Querys. Some of my solutions are to create a method and put parameters into it and call it from the query and insert the values that i need as parameters. but i need to make use of those values in…
Felipe Franco
  • 171
  • 3
  • 15
0
votes
1 answer

(Parse-SDK) How to access List from another ParseObject?

I'm using ParseSDK for android project. But I have a problem to access List of ParseObjects from another ParseObject class. I tried a lot of things, but anything didn't help me. Below I put my code. Team team; List members =…
Nimantha
  • 165
  • 3
  • 11
0
votes
1 answer

How to pin/unpin ParseObject non recursive?

In my new android app based on parse, I would prefer pinning all sub-elements myself / not automatically, as pinning a certain sub-element would result in infinite recursion or just does not make sens in my context. Is there a way to pin and unpin…
Maximilian
  • 491
  • 3
  • 11
0
votes
1 answer

Save drawable into parse

I saved into my project a drawable R.drawable.descarga what I need to do I that when there is no file to upload to parse it uploads this one. This is my code. if (requestCode == REQUEST_GALLERY_PHOTO7 && resultCode == RESULT_OK) { …
Felipe Franco
  • 171
  • 3
  • 15
0
votes
1 answer

Showing marker in map with ParseGeoPoint

At the moment I am having a hard time placing the marker on the map . I want to do an app where I track the path I took while walking. Can you help me with a link to accomplish this and how do I place the marker in the map given the previous…
0
votes
1 answer

Kotlin/Parse : com.parse.ParseObject cannot be cast to

I'm trying to do a Parse request but I got this error : com.parse.ParseObject cannot be cast to com.mysapp.mys.common.model.Lesson but it doesn't enter inside the subscribe after the return of the request. The answer of the server is good…
Itoun
  • 3,713
  • 5
  • 27
  • 47
0
votes
1 answer

Parse query retreiving with certain conditions

I am making a query in a class my problem is that I have some license plates, here in Colombia licenses plates are as it follows ABC 123. I need my query to only return to me, in this case, the ones that end with 2 This is what i did following the…
0
votes
1 answer

Query a ParseObject(Pointer) in User Class

Hello i am having some trouble in a Query. I made a pointer called "Empresa" in the _User class. i understand that this pointer is a ParseObject.So i did this i tried to do it in two ways... private void queryEmpresa(){ ParseQuery
0
votes
1 answer

Problems with the ParseLiveQuery

I made a parse query and now I need to implement the live query. But my query has a List and I can see that here in this liveQuery method it is different. public void onEvent(ParseQuery query, final ParseObject…
0
votes
2 answers

Parse Query overrides new query over old one?

I'm doing parse query to get data but new query parameter overrides old one. In my app user can block other users. When its done I write a "Block" object to database like this I block other user: ParseObject block = new ParseObject("Block"); …
kaya
  • 45
  • 6
0
votes
1 answer

Problems with parse Query in ParseObject

I'm having trouble with this query. What i want to accomplish here is according to the idChatSeleccionadoAppUsuario(KYLmvSGP1…) i can have all the messages and User(Usuario) inside the list. This is what i have tried so far: …
0
votes
2 answers

error unauthorized: master key is required when trying to send notification with parse to an specefic device Android Parse

I'm trying to send notification to an specefic device using Parse In android. this is my code for ParseInstallation: ParseInstallation installation = ParseInstallation.getCurrentInstallation(); installation.put("device_id", "1234567890"); …
0
votes
0 answers

parse Location services

Hello i want to do a Location section within my app . And what i want to accomplish i havent seen it in documentations. I want to walk from point A to point B and when i cover distance i want for the app to track the trace like uber does with the…
1 2 3
8 9