adb常用命令

卸载apk

adb uninstall com.chaincloud.securewallet

1.查看当前所在的最顶层的Activity的(即当前用户能看到的)

adb shell dumpsys activity | findstr "mFocusedActivity"

2.查看当前装的所有应用程序

adb shell pm list package

3.启动特定的activity

adb shell

然后

am start -n
com.chaincloud.securewallet/com.blockchain.securewallet.MainActivity

你可能感兴趣的:(adb常用命令)