Skip to content

Instantly share code, notes, and snippets.

@xtranophilist
Created April 12, 2013 18:24
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save xtranophilist/5374061 to your computer and use it in GitHub Desktop.
Save xtranophilist/5374061 to your computer and use it in GitHub Desktop.
Android SMS backup/restore w/ adb
#Backup:
adb remount
adb pull /data/data/com.android.providers.telephony/databases/mmssms.db mmssms.db
#Restore:
adb remount
adb push mmssms.db /data/data/com.android.providers.telephony/databases/mmssms.db
@suamikim
Copy link

suamikim commented Feb 4, 2015

This works fine for sms and text in mms but it doesn't seem to backup photos/pictures sent via mms.
I'd really appreciate instructions on how to also backup photos & pictures from mms.

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment