Questions tagged [parse4cn1]

parse4cn1 is a CodenameOne extension library (cn1lib) that enables integrating Parse (www.parse.com) in CodenameOne apps. It uses the Parse REST API whenever possible to realize cross-platform solutions. However, for advanced functionality such as push notifications, parse4cn1 features native Parse SDK integration.

The Parse platform provides a complete backend solution for your mobile application. Parse provides a REST API as well as libraries for different mobile platforms like Android and iOS. CodenameOne (CN1 for short) on the other hand is a great framework for cross-platform mobile application development. Although some of the functionality provided by Parse is offered to paying CN1 users, integration of third-party libraries is allowed and even encouraged in CN1. This project aims at making the Parse platform available to CN1 apps thereby giving developers more options for cloud-based backend solutions in CN1. In order to maximize platform support, this library aims at implementing the REST API specification rather than, for instance, integrating the existing Parse native libraries for various platforms to achieve the same functionality. Of course, where possible, advanced features that go beyond the REST API (e.g., background operations) will also be supported by this library preferably in a generic manner. Since CN1 is written in Java, this library can also be used in pure Java projects as illustrated here.

32 questions
3
votes
1 answer

(Proguard) Server Build Error Codename One

After adding an Android Certificate in my project, the Codename One server started getting issues to build, then by asking the Codename One support, they told me it could be something related to the Proguard, so after disabling the Proguard by…
Simple
  • 827
  • 1
  • 9
  • 21
2
votes
2 answers

Can I use parse4cn1 in non cn1 projects?

I've been trying to download the parse4j from Thiagolocatelli but they're missing version 1.5-SNAPSHOT which includes a third parameter for Parse.initialize(), but I can't download version 1.5-SNAPSHOT from github nor from Maven repository, people…
Simple
  • 827
  • 1
  • 9
  • 21
2
votes
1 answer

Unable to delete an object Parse Server

Everything is working fine untill I decide to delete something, my hosting is back4app.com. I verified the security restrictions of my Database so it's ok I can write, read also delete objects, but when I try to delete an object by using…
Simple
  • 827
  • 1
  • 9
  • 21
2
votes
2 answers

Parse Server How to get an object ID by query?

If we wanna get an object ID we should do this: String objectId = gameScore.getObjectId(); but what if we wanna get an object ID by a query? Like this: ParseQuery query = ParseQuery.getQuery("mytable"); query.whereEqualTo("Title",…
Simple
  • 827
  • 1
  • 9
  • 21
2
votes
1 answer

Will Parse4cn1 still work after Parse server retirement?

I've been looking for a way to send push notifications to Android, iOS and Windows phone devices. I've come across the Parse4cn1 library. This library uses Parse. However i saw on the Parse site that they will retire soon. I have the following…
1
vote
0 answers

Local Notification NOT SHOWING CodeNameOne

I'm a CodeNameOne beginner. I'm trying to make a local notification, it doesn't seem to work,I don't get anything displayed. here's the start function. Is there anything missing? Should I add variables in the build settings? public void start()…
Compte Gmail
  • 137
  • 3
  • 8
1
vote
1 answer

Facebook native SDK conflicts with Parse4CN1 on Android

I'm currently having some trouble with an issue that was previously fixed through a build hint some time ago as you can see in the following thread:…
1
vote
1 answer

Parse Server querying a list then adding to a Container list

Finally my parse4cn1 API is working with Codename One! I'm glad it worked but I'm having issues to get a list from a query then add it to a Container list in order to be displayed on my App screen. I use this Menu to add data in the Database: public…
Simple
  • 827
  • 1
  • 9
  • 21
1
vote
1 answer

Parse Server Database Comprehension

I have no experience with ParseServer, and I have a frustrated question about a few things. First is the way to update an object. Ok here we go, this is the process to create an object: Creating Objects: ParseObject gameScore =…
Simple
  • 827
  • 1
  • 9
  • 21
1
vote
1 answer

Codename One Parse Server to retrieve List

Hi I'm using Codename One and Parse Server to save database in my Mobile App, but I wanna put each result of the query inside a button, because I need to click on each element of the List. ParseQuery.getQuery("List") "List" is the ID referenced in…
Simple
  • 827
  • 1
  • 9
  • 21
1
vote
0 answers

Parse4cn1 recreate user from cached data

I'm trying to create a caching system for data downloaded from parse in my cn1 app, so that the app doesn't have to make a network call every time. I don't want to use the built in externalization implementation built into the parse4cn1 lib, because…
ygesher
  • 1,133
  • 12
  • 26
1
vote
1 answer

Error in server build

Good day all, I have just followed the steps given in order to implement push notifications using the parse4cn1 lib. On sending an android build I received this error build, I really dont know what next to do as I followed the instructions…
rockspetre
  • 325
  • 1
  • 7
1
vote
1 answer

How do I parse specific data from a website within Codename One?

I have run into a road block developing my Codename One app. One of my classes in my project parses 3 specific html "td" elements from a website and saves the text to a string where I then input that text data into a Codename One multibutton. I…
Preston White
  • 97
  • 1
  • 2
  • 10
1
vote
1 answer

Parse4cn1 connection error

I'm facing trouble using parse4cn1 because apparently I have a connection issue with the server(back4app). I was working with parse4cn1 for quite some time and everything went fine until yesterday. Right now I am getting a ParseException when using…
Itay Chen
  • 55
  • 3
1
vote
1 answer

PARSE4CN1 Android push don't work

I'm having some trouble integrating my app with the parse4cn1 lib. I followed the tutorial published on this link and the app registers normally on the Parse Server as an installation but when I try to send a push to Android devices they simply…
1
2 3