Created
May 4, 2014 23:18
-
-
Save RowanH/cf6f16d230cacc95e823 to your computer and use it in GitHub Desktop.
Pull backup locally of an Android app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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