Skip to content

Instantly share code, notes, and snippets.

@RowanH
Created May 4, 2014 23:18
Show Gist options
  • Select an option

  • Save RowanH/cf6f16d230cacc95e823 to your computer and use it in GitHub Desktop.

Select an option

Save RowanH/cf6f16d230cacc95e823 to your computer and use it in GitHub Desktop.
Pull backup locally of an Android app
adb backup -f ~/work/data.ab -noapk com.my.app.name
dd if=data.ab bs=1 skip=24 | python -c "import zlib,sys;sys.stdout.write(zlib.decompress(sys.stdin.read()))" | tar -xvf -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment