Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vonDubenshire/4b8c5357244b49527da5327e1a4aca27 to your computer and use it in GitHub Desktop.
Save vonDubenshire/4b8c5357244b49527da5327e1a4aca27 to your computer and use it in GitHub Desktop.
ADB Full Backup/Restore Commands

ADB Full Backup Command:

adb backup -apk -shared -all -f <filepath>

Example:

adb backup -apk -shared -all -f C:\path\to\backups\android_backup_YYYY-MM-DD.ab

ADB Restore Command:

adb restore <filepath>

Example:

adb restore C:\path\to\backups\android_backup_YYYY-MM-DD.ab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment