Skip to content

Instantly share code, notes, and snippets.

@bjoernQ
Created October 14, 2013 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoernQ/6975476 to your computer and use it in GitHub Desktop.
Save bjoernQ/6975476 to your computer and use it in GitHub Desktop.
Script for backing up an Android app and unpacking it
#!/bin/bash
rm backup.ab
adb backup -apk $1
echo "Ok got it"
dd if=backup.ab bs=1 skip=24 | openssl zlib -d | tar -xvf -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment