Pre-development question about android app with data synchronization

1

I would like to make a simple user registration application using java.

However, this application should maintain a local database for offline data access and a database in the cloud to synchronize information when I click a "sync" button.

My question is which databases can I use for the cloud and for local storage.

I have this type of doubt because I have not yet ventured with development in Java and no development for Android and the intention is to use something that is easier to implement, or that is already a standard for this type of application. >     

asked by anonymous 15.06.2015 / 21:08

1 answer

2

For internal database use, I suggest that you use SQLite . Android has native support for it, and it's super cool to deploy.

For cloud synchronization, if you do not want to develop an API for this, I suggest you use some tool like Parse Core . This tool allows you to save information in the cloud without the need for an API. They have an SDK for Android that is super simple and has a very complete documentation of use

15.06.2015 / 21:15