In Eclipse (DDMS) I have folder shared_prefs, where located my SharedPreferences files. Can I open this files from Eclipse for view content?
Asked
Active
Viewed 2,457 times
1 Answers
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
-
1Thank you. How can I open console? – Alexander Shlenchack Feb 15 '12 at 20:01
-
Sorry, but I get "NameFile.xml". How can I view key-value payirs? – Alexander Shlenchack Feb 15 '12 at 21:35
-
1do an adb pull and view the file locally – Paul Nikonowicz Feb 15 '12 at 22:14