解决android执行adb shell的错误问题

一、 执行adb shell,错误提示error: device not found


1. 问题原因

没有开启android虚拟机

2. 解决办法

    1》 打开Eclipse
    2》 window -> Android Virtual Device Manager 
    3》 选择虚拟设备,点击Starts the selected AVD

     

二、执行adb shell,错误提示error: device offline 

1、adb kill-server
2、adb start-server
3、adb remount
4、最后再执行adb shell

你可能感兴趣的:(eclipse,android)