Can you update records in sqlite on all devices that have the app installed?

0

I'm doing a project in Android Studio using a sqlite database and I want to know if after installing the app on several devices, can you update the data in that database so that all the users that have installed the app can perceive those changes?

    
asked by David Manzano 06.06.2017 в 18:42
source

1 answer

0

Not automatically, but you can send a request to your server each time a record of your database in the application is updated so that this (Your Server) issues a PUSH notification to all users with an app ( Similar to application notifications) which calls a synchronize bd method when opening the app.

The other option is that the app every so often ask the server if there are new changes with a version of information.

    
answered by 06.06.2017 / 20:04
source