Created
October 14, 2013 13:20
-
-
Save bjoernQ/6975476 to your computer and use it in GitHub Desktop.
Script for backing up an Android app and unpacking it
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
#!/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