adb常用命令

1、把手机里面文件到电脑上面

adb pull /system/etc/permissions/platform.xml f:\a 

2、把电脑上面的文件推进到手机里面去

adb push F:\a\platform.xml /system/etc/permissions/ 

3、获取当前Activity的包名和类名

adb shell dumpsys window | findstr mCurrentFocu

4、adb shell dumpsys activity activities //Android通过ADB命令获取当前运行的Activity

5、adb shell am start -n com.android.camera/com.android.camera.Camera 用命令启动一个应用
6、获取目标设备中已安装的应用程序包

adb shell pm list packages
图片.png

7、卸载或删除的应用包

adb uninstall cn.kuwo.kwmusiccar
图片.png

adb shell setprop persist.sys.fm_switch true //用命令设置系统属性

adb shell getprop persist.sys.fm_switch //用命令获取系统属性的值

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