Created
January 6, 2022 16:57
-
-
Save 0XDE57/1f6945affdf9c14ecf93d2a48663e967 to your computer and use it in GitHub Desktop.
android adb
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
list applications: | |
adb shell 'pm list packages -f' | sed -e 's/.*=//' | sort | |
get path for app: | |
adb shell pm path com.app.name | |
extract app: | |
adb pull /path/to/app.apk | |
install app: | |
adb push /local/path/app.apk /data/app/app.apk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment