Skip to content

Instantly share code, notes, and snippets.

@searock
Created April 12, 2023 00:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save searock/a568c055f4fdfb78282120d79ce40fe7 to your computer and use it in GitHub Desktop.
Save searock/a568c055f4fdfb78282120d79ce40fe7 to your computer and use it in GitHub Desktop.
Downloading apk from device
Get a list of all the packages
adb shell pm list packages
Get the location for the app
adb shell pm path com.example.someapp
Download all the apks
adb pull /path/apk1 .
adb pull /path/apk2 .
Later to install
adb install-multiple [apk1] [apk2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment