Last active
February 22, 2022 05:43
-
-
Save ccjeng/5175340 to your computer and use it in GitHub Desktop.
Android adb backup command
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
## backup nonsystem apk | |
adb backup -apk -shared -nosystem -all -f backup_apk.ab | |
### backup system and nonsystem apk | |
adb backup -apk -noshared -system -all -f backup_apk.ab | |
## backup individual apk | |
adb backup -apk com.example.testing -f testing.ab | |
## restore all | |
adb restore backup_apk.ab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment