1

I know the SharedPreferences are interface for accessing and modifying data returned by the getSharedPreferences() method. We can fetch, edit or delete these data, but where are these data stored? In some sort of database, or it is just an object in memory?

Ariel Magbanua
  • 3,083
  • 7
  • 37
  • 48
taxo
  • 539
  • 1
  • 3
  • 21
  • 2
    Duplicate?: [Where are shared preferences stored?](http://stackoverflow.com/q/6146106/456814). –  Aug 13 '14 at 01:12

1 Answers1

2

SharedPreferences are stored in an .xml file. It is stored in your applications installation folder.

For more information, check out the doc: SharedPreferences

PKlumpp
  • 4,913
  • 8
  • 36
  • 64