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

Retrieving data from another class in one query

I've built an application that uses Parse. My application allows users to register, login and then post to a parse cloud database. I have two Parse classes, one called User and one called Posts. User is made up of ObjectId, username and password,…
Paul Alexander
  • 2,686
  • 4
  • 33
  • 69
1
vote
0 answers

How To Replace OnActivityResult With New Activity Result API With Parse-SDK

I wonder if someone may be able to assist with my struggles, I apologise as I’m new to Kotlin. After implementing facebook login following the parse-sdk-android documentation I have realised that onActivityResult() is deprecated (though it still…
1
vote
0 answers

Android studio throwing error when installed new parse sdk

I tried to use a new parse sdk from github but after installing android studio throwing below error. Error:No resource identifier found for attribute 'appComponentFactory' in package 'android' Error:Execution failed for task…
ash
  • 17
  • 4
1
vote
1 answer

cannot resolve symbol Object in Object.,extend

I'm trying to use a parse server from back4app as my backend and I'm having troubles with the initial installation part.So I followed the documentation given in back4app to connect my app to the parse server and the installation shows in the…
1
vote
1 answer

Can't upload data to my Parse Server throught my Android Studio project

I have trouble using my Parse Server that I created using Amazon Web Service. I try to add a user through ParseUser in my MainActivity with a Button onClick method but it doesn't work for some reason... The error is : Error :…
1
vote
0 answers

Parse User Class vulnerable to fake insertions

I'm using back4app as my back-end for my android application. My concern is that I don't see how I can stop hackers from spamming user creation in my database. Since the client key and app ID is shipped with the app itself, anyone can use it and…
Tanzim Chowdhury
  • 3,020
  • 2
  • 9
  • 21
1
vote
2 answers

ParseInstallation.getCurrentInstallation().getObjectId() returns null in the particular user's smartphone

I have my Android app using the Parse server for backend service. A number of users are currently using my Android app. However, some particular users faced the problem at app installation that an object is not created in the Installation table even…
Jay
  • 75
  • 1
  • 7
1
vote
0 answers

How to solve Gradle Compatibility Issue on appcompat-v7:28.0.0 whenever parse:1.20.0 is implemented?

I'm implementing Parse SDK 1.20.0 on my kotlin android application, but whenever I implemented it and sync the gradle, I got a gradle incompatibility issue on appcompat-v7:28.0.0. This is for kotlin application that connected with Parse SDK made by…
1
vote
1 answer

Convert String to ParseObject

I am using the Parse Android SDK and I have an objectId as a String and I want to convert it to a ParseObject what is the best way either in Kotlin or Java?
Zacktamondo
  • 1,891
  • 3
  • 17
  • 33
1
vote
1 answer

How can I create a new user in Parse, without changing the current user?

I am currently making a friend request module. The user clicks "Approve" the program adds the friend to the _User class on Parse Server. I believed the code below would do it, and it does, but the problem is that is changes the current user to the…
1
vote
1 answer

How to send data from client (android-java app) to parse server, process it, save it in parse-dashboard and send back result to client?

I want to build a Client Android Application that can insert data and send it for processing to a parse-server that is running in AWS cloud. The server will process the data and save it to a parse-dashboard and send the processing results to the…
1
vote
3 answers

initialize (com.parse.Parse.Configuration) in Parse cannot be applied to MainActivity Error?

I am a beginner to android development, app development and development in general and I am trying to setup a backend database for my android application. I decided to use a service called back4app in order to have a more user-friendly experience…
1
vote
0 answers

Ionic build android : Errors during XML parse: javax.xml.bind.UnmarshalException

I created a simple ionic app and when i try to build the android app using ionic build android I come across this error: Parsing C:\Users\myuser\AppData\Local\Android\Sdk\tools\package.xml Errors during XML…
1
vote
1 answer

Query for pointers in Parse Sdk Android

I have a Favorite class that has a pointer to a class called Location as one of its location fields. I want to query the Favorite class and retrieve all objects that point to a certain Location object. In javascript I just create a Location object,…
Mehdi
  • 772
  • 7
  • 16
1
vote
1 answer

Background uploading of multiple image to Parse Serve Android Java

I am writing an Android application that involves selecting multiple images and uploading them to a parse server. I have implemented the multiple image selection using Telegram Android Gallery picker, and I can now upload them to Parse however…
1
2
3
8 9