0 votes
in JQuery by
How to persist data in an Android app?

1 Answer

0 votes
by

There are basically four different ways to store data in an Android app:

  1. Shared Preferences - to save primitive data in key-value pairs
  2. 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
  3. External Storage - you might want the user to view the files and data saved by your app
    1. SQLite database

Related questions

0 votes
asked Jun 23, 2020 in JQuery by AdilsonLima
0 votes
asked Jun 22, 2020 in JQuery by DavidAnderson
...