Last active
February 2, 2017 13:46
-
-
Save luccasmaso/ce51d9875c6d4fb60cc4ca53ca50395d to your computer and use it in GitHub Desktop.
Script for backup app data from androids 4.4
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 shell | |
bu 1 backup -apk your.package.name > /sdcard/backup.ab | |
exit | |
adb pull /sdcard/backup.ab | |
# https://sourceforge.net/projects/adbextractor/ | |
java -jar abe.jar unpack backup.ab backup.tar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment