我需要在adb设备列表中查看我的Nexus 7。 虽然我在设备上启用了“”USB调试“”,但是当我尝试查看“”adb设备“”时,没有连接任何设备?
答案 0 :(得分:1)
Computer
或Windows Explorer
,
并选择管理。Devices
。Other
设备。select Update
驱动软件。这将启动Hardware Update Wizard
。Browse
作为驱动程序软件,然后点击Next
。
点击Browse
,然后找到USB driver
文件夹。 (谷歌USB
驱动程序位于\ extras \ google \ usb_driver。)Next
安装驱动程序。答案 1 :(得分:0)
我知道你已经收到了正确答案。但对于那些遇到相同错误的人,我建议在设备的开发者选项中查找“撤销USB调试授权”。有时真的有帮助!特别是如果在其他操作系统之前一切正常。
答案 2 :(得分:-1)
案例研究(在我的WXP SP3上......是的,我仍然使用它..),手机AllView V2ViperE,Android版本5.1: 如果您继续没有连接设备(虽然Android Composite ADB接口在设备管理器中没问题。我的意思是没有黄色“!”),根本原因可能是adb服务器..解决方法:下载新的adb版本(例如:http://www.androidro.ro/descarca-si-instaleaza-driveri-adb-pentru-telefoanele-allview/)..我选择V1 Viper S .. unrar并运行adb-setup-1.4.2.exe,它将创建C:\ adb \目录:
C:\adb>dir
Directory of C:\adb
12/11/2016 03:23 PM <DIR> .
12/11/2016 03:23 PM <DIR> ..
10/19/2014 02:18 AM 1,009,664 adb.exe
10/19/2014 02:18 AM 96,256 AdbWinApi.dll
10/19/2014 02:18 AM 60,928 AdbWinUsbApi.dll
10/19/2014 02:18 AM 196,608 fastboot.exe
4 File(s) 1,363,456 bytes
2 Dir(s) 6,116,716,544 bytes free
C:\adb>
现在运行:
C:\adb>.\adb devices -l
adb server is out of date. killing...
* daemon started successfully *
List of devices attached
DQBMWGSC9HT8CQ7D unauthorized
//V. in this stage allow USB debugging on the phone, then just run again:
C:\adb>.\adb devices -l
List of devices attached
DQBMWGSC9HT8CQ7D device product:V2_Viper_E model:V2_Viper_E device:V2_Viper_E
C:\adb>.\adb -d shell
shell@V2_Viper_E:/ $
Eclipse / LogCat也活跃起来.. Voila .. Vive la Roumanie ..现在我正在努力进行ndk调试..