Created
March 11, 2022 21:46
-
-
Save NaserKhoshfetrat/22fff9b9876416b1a730d1d03730d493 to your computer and use it in GitHub Desktop.
adb command
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
//install | |
adb install package.name.apk | |
//uninstall | |
adb uninstall package.name | |
//proces id | |
adb shell pidof package.name | |
//debug | |
adb forward tcp:<port> jdwp:<proces_id> | |
jdb -attach localhost:<port> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment