Created
May 20, 2021 15:00
-
-
Save vitalymak/4517030784bc8d80d88a8f9c24cb2f68 to your computer and use it in GitHub Desktop.
Android: get an app backup
This file contains 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 -noapk com.app.name | |
# get abe.jar from the latest release https://github.com/nelenkov/android-backup-extractor/ | |
java -jar abe.jar unpack backup.ab backup.tar "" | |
tar tvf backup.tar # to list files | |
tar -xf backup.tar # to extract |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment