1

In Eclipse (DDMS) I have folder shared_prefs, where located my SharedPreferences files. Can I open this files from Eclipse for view content?

Paul Nikonowicz
  • 3,883
  • 21
  • 39
Alexander Shlenchack
  • 3,779
  • 6
  • 32
  • 46

1 Answers1

2

yes

/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

taken from here: SharedPreferences file

Community
  • 1
  • 1
Paul Nikonowicz
  • 3,883
  • 21
  • 39