i want to wipe my phone but dont want to lose settings for some apps such as locale and io shopping. is there a way to pull files off the phone that store app settings, wipe and then push them back to restore the settings?
any other way to do this?
Code:
cp -R /data/data/edu.mit.locale /sdcard/locale/
that would be the shell commands to backup your entire Locale database and preferences from its permanent home on your phone to an sdcard folder called "locale"
Or you could do:
Code:
adb pull /data/data/edu.mit.locale/* C:\android\locale
which would be the adb command to pull the folder from the phone and put it in a folder on your C drive called "android\locale"
since I don't have oi shopper installed, I can't tell you the database location but if you go into a shell and do
you should see something like com.android.oi.shopper or com.shopperoi.android or something along those lines....once you have the folder location, you can use the above code to pull it out onto your computer.
To restore you have to put the files for Locale back here:
Code:
/sdcard/locale/edu.mit.locale/* /data/data/edu.mit.locale
and some similar code for oi shopper
Check out this link for more info on how to explore the file structure of android and some helpful commands
http://forum.xda-developers.com/showthread.php?t=488928