adb常用命令

1.查看设备是否连上
adb devices

2.停止app
adb shell am force-stop 包名

3.进入shell命令行
adb shell

4.拷贝文件到本地
adb pull 路径 D:\work\LOG\

5.adb安装app
adb install -r

6.adb卸载app
adb uninstall 包名

7.adb获取系统权限命令

adb reboot
adb remount

8.fastboot操作

1 开启fastboot 模式
adb reboot bootloader

2 刷system
fastboot flash -S 128M system

3 挨个刷后面的

fastboot flash aboot
fastboot flash boot
fastboot flash cache
fastboot flash persist
fastboot flash recovery
fastboot flash userdata

4 结束fastboot并重启
fastboot reboot

5.刷摄像头config

adb root
adb reboot
adb root
adb remount
adb push camera_config.xml system/etc/camera

你可能感兴趣的:(adb)