srisindhu saride
srisindhu saride

Reputation: 431

Data storage option that best suits for my android app purpose

I am creating an android app that can be used by common users and also admin. Suppose, if admin adds a new place name, that name should be added to database and when common user uses the app, he should be able to see the place name that is added.

I used MySqlLite database. But the problem is that if the app is uninstalled all data is lost. So I want some persistent data storage in which all the places that are added by admin are saved permanently.

Regards, Sindhu

Upvotes: 0

Views: 39

Answers (1)

MichaelStoddart
MichaelStoddart

Reputation: 5639

With the data being needed across multiple devices, your only option is to create/use a backend API.

Parse would have been a good choice but since that is getting shut down soon then it wouldn't be wise to use that.

Take a look at these alternatives here

You could also write one yourself, but unless you have some experience in that sort of thing then it will take some time to learn.

Upvotes: 1

Related Questions