Login
Remember
Register
Ask a Question
How to persist data in an Android app?
0
votes
asked
Jun 23, 2020
in
JQuery
by
AdilsonLima
How to persist data in an Android app?
#android
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 23, 2020
by
AdilsonLima
There are basically four different ways to store data in an Android app:
Shared Preferences - to save primitive data in key-value pairs
Internal Storage - you need to store data to the device filesystem, but you do not want any other app (even the user) to read this data
External Storage - you might want the user to view the files and data saved by your app
SQLite database
...