tags:

views:

66

answers:

1

Hi,

Does somebody knows where the file with the actual stored SharedPreferences is located?

+2  A: 

Yes I know.

/data/data/com.your.package/shared_prefs/com.your.package_preferences.xml

So you get there by running in console:

# adb shell
# cd /data/data/com.your.package/shared_prefs/
# ls
Pentium10
The filename may vary, depending on how the `SharedPreferences` were constructed, but the directory is correct.
CommonsWare