I\'m using shared preferences to store certain values for my app. I would like to see the file where the info is actually stored on my phone. I found many ways to do this on
If you're using an emulator you can see the sharedPrefs.xml file on the terminal with this commands:
sharedPrefs.xml
adb root
cat /data/data//shared_prefs/
after that you can use adb unroot if you dont want to keep the virtual device rooted.
adb unroot