I am working on an APP leveraging APIExpresss for offline capabilities. As part of it I am allowing users to upload images/files and for that I am using Fileupload Plugin which is provided by Appery. How can I get that plugin to support offline capabilities similar to the APIExpress i.e. queueing edits for later submission when there is no internet.
My file upload service has to be executed first because I use the file url (after success event) and load that with the rest of the data. i.e. 2 services are called for each submission: 1st File Upload and on Success I call 2nd Service to load the rest of the data.
Appreciate some ideas.