2024-10-03 08:00:04

ADB未发现设备

我正在尝试在我全新的Nexus 10上安装一个Android应用程序。我有一个。apk文件。我下载了Android SDK,安装了“Android SDK Tools”,“Android SDK Platform-tools”和谷歌USB Driver。我已经在我的Nexus 10上检查了“未知来源”的设置。

当我从命令终端运行“adb devices”时,它不会列出任何设备。我试图遵循这个建议,因为它与我之前在Stack Overflow上找到的建议完全相同。在执行这些步骤之后,“adb devices”仍然返回一个空列表,更糟糕的是,当我将Nexus 10连接到我的PC时,Windows不会显示设备内的任何文件夹。

我已经取消了该链接中的步骤,以及迄今为止我所做的所有其他操作,还从设备管理器中卸载了我的Nexus 10并重新安装了它,但我仍然没有在设备中看到任何文件夹。

为了让我的设备显示在ADB设备中,我是否遗漏了什么?

我怎么做才能让Windows看到设备内的文件夹?


确保在“设置->开发人员选项”中启用USB调试

此外,在进入Android SDK的平台工具文件夹后运行“adb devices”(除非你的系统路径上已经有这个文件夹),否则该命令将无法找到。


有时ADB与设备失去连接,需要重置。如果其他一切正常(如USB驱动安装,设备上启用了开发人员设置),但仍然无法看到您的设备,则需要重置ADB进程。

这可以在DDMS透视图(从Eclipse中)的Devices选项卡(最右边的三角形包含一个执行重置的菜单项)中使用。

否则,在命令行中,您可以使用以下2个命令重置它:

adb kill-server

then

adb start-server

Edit: I recommend you DO NOT run ADB under VirtualBox if you are using a Windows Host. Somehow I got VirtualBox to lock the device drivers on the host, eventually making it so that the ADB wouldn't work on the client nor the host for any device I plugged in. To fix, I removed VirtualBox extensions on the host and ran http://www.nirsoft.net/utils/usb_devices_view.html to delete the incorrect drivers. I could not get the correct drivers to load while VirtualBox extensions were installed, and this problem was a complete bastard to diagnose and fix.

编辑2:以下也可能是过时的,现在谷歌已经发布了一个集成的ADB扩展Chrome。

真是一场安装噩梦……下面是让我的Nexus 10在VirtualBox下运行的XP虚拟机上被识别的步骤:

If you get asked to install Nexus 10 drivers, make sure to untick "don't ask again" (you WANT to be asked again!). Plug in the Nexus 10 USB connection Turn on debugging in the Nexus 10 settings Developer menu (tap "About Tablet" 7 times to get that menu). In your virtual machine settings (host), add the samsung Nexus 10 device to the USB Device Filters (important - selecting it from the devices menu didn't seem to work). In guest install java jre (if you don't have java installed). In Control Panel, change Java settings so that java doesn't run in the browser (to help prevent security issues). In guest get the adk zip file and put it somewhere permanent. I needed to delete the .android config directory from the user directory because I moved the directory. Run the SDK Manager.exe - if it doesn't work, try running sdk\tools\android.bat which seems to give better error reporting. From SDK Manager install the Google USB driver package. Unplug the Nexus 10 and plug it in again, and install the Google USB driver package. Restart the guest. running c:>[...]\sdk\platformtools> adb devices finally shows me the device...


Windows 8无法识别我的Nexus 10设备。通过设备上的设置对话框设置传输模式为摄像机(PTP)修正。

>存储>菜单> USB计算机连接到“相机(PTP)”


在通过Android SDK管理器下载了谷歌驱动程序(可通过Eclipse, Intellij或Android Studio)后,我必须在计算机管理>设备管理>其他设备> ADB中更新驱动程序-右键单击更新驱动程序并浏览更新的驱动程序最终完成了任务。

顺便说一句,对我来说也是个噩梦。我仍然感到困惑,建立一个开发环境应该是最困难的任务,每一个新的无法解释的失败都会导致另一个失败。Jeesh !祝你好运。


进入设备管理器,检查硬件id。 检查usb。Inf文件中列出了设备 如果不是,添加设备硬件id并从设备管理器中安装它。


我找到了一个解决方案(针对Windows 7):

将您的Nexus 10连接到PC 进入Windows设备管理器 r单击ADB Interface ->属性 详细信息->硬件id。

你会看到两张这样的记录:

USB \ VID_18D1&PID_4EE2 USB \ VID_18D1&PID_4EE2&MI_01

5打开“android_winusb. zip”文件。inf文件(我有它在“C:\Users\<username>\AppData\Local\Android\ Android -sdk\extras\谷歌\usb_driver”目录)

6在“[谷歌”中创建记录。NTx86]和[谷歌.]NTamd64]使用ADB接口属性中的硬件id:

谷歌Nexus 10 %SingleAdbInterface% = USB_Install, USB\VID_18D1&PID_4EE2 %CompositeAdbInterface% = USB_Install, USB\VID_18D1&PID_4EE2&MI_01

7保存文件,更新ADB接口驱动程序,路径显示为“C:\Users\ AppData\Local\Android\ Android -sdk\extras\谷歌\usb_driver”目录


这种情况似乎出现在一些ADB驱动程序中。我在一些谷歌设备上遇到过同样的问题,安装Universal ADB windows驱动程序每次都为我解决了这个问题。


我的Windows 8也遇到了同样的问题。Android/SDK USB驱动程序安装正确,但我忘记从我的手机安装USB驱动程序。安装手机USB驱动后,ADB工作正常。

我希望这能有所帮助。


这很简单,只要关掉你的Android设备,然后同时按住“音量调低”和“电源”键。等待几秒钟,直到它开始恢复模式,完成。 现在输入adb devices,您将看到您的设备。


使用另一根电缆。

刚刚发现我的一根常规充电线有Vcc、Gnd对,但没有Data+、Data-。

https://en.wikipedia.org/wiki/USB#Pinouts


Windows 8用户:

在尝试了这里给出的所有解决方案后,我发现了这个:

进入设备管理器


让我从我的计算机上的设备驱动程序列表中选择

选择Android设备,然后选择Android ADB接口。


现在我在adb devices中列出了我的设备。


在我的Windows 8.1 64位(Nexus 5没有显示)上,只有手动安装USB驱动程序才能解决这个问题: http://developer.android.com/sdk/win-usb.html “Android SDK管理器”中的“谷歌USB驱动程序”已经安装。


For the Blu Studio 5.5s ADB drivers, you have to go through this hoop. I am certain it is the same with all Blu phones or maybe for all non-Google mfg phones, I am not sure. First of all if you connect the Blu device with USB cable and USB Debuggin off, you will see that Windows 7 loads a generic driver for you to copy on/off files to the phone and SD storage. This will appear when the USB cable is first plugged in and appears as a device icon under Control Panel, Device Manager, Portable Devices, BLU STUDIO 5.5 S (or the device you are working with). Do not bother getting the hardware ID yet - just observe that this happens (which indicates you are good so far and don't have a bad cable or something).

Go to the phone and switch on USB Debugging in the Developer section of your phone. Notice that an additional item appears as an undefined device now in the device manager list, it will have the yellow exclamation mark and it may have the same name of the phone listed as you saw under Portable Devices. Ignore this item for the moment. Now, without doing anything to the phone (it should be already in USB debug mode) go back to the Portable Devices in Device Manager and right-click the BLU STUDIO 5.5 S or whatever phone you are working with that is listed there without the exclamation mark (listed under Portable Devices). Right click on the icon under Portable Devices, in this example the name that appears is BLU STUDIO 5.5 S. On that icon select Properties, Details, and under the pull down, select Hardware IDs and copy down what you see.

对于BLU STUDIO 5.5 S,我得到:

USB\VID_0BB4&PID_0C02&REV_0216&MI_00
USB\VID_0BB4&PID_0C02&MI_00

(注意,如果你不按顺序这样做,HW ID将与手机USB调试关闭时不同。你想复制的值,它改变时,USB调试是ON)

现在按照上面的说明进行操作,当然要定制添加INF文件的行,使用与您自己的手机相关的行,而不是与Nexus 10相关的行。下面是要定制的内容;当你下载SDK时,你应该有一个从ZIP扩展而来的文件结构,如下所示:

\adt-bundle-windows-x86_64-20140321\sdk\extras\google\usb_driver

找到名为android_winusb的文件。usb_driver文件夹中的Inf 复制它并命名为任何名称,比如myname.inf 编辑myname。Inf和添加行如上所述,只修改为您的特定电话。例如,对于BLU STUDIO 5.5 S,我根据提示在2个位置添加了以下2行。

;BLU STUDIO 5.5 S
%SingleAdbInterface%        = USB_Install, USB\VID_0BB4&PID_0C02&REV_0216&MI_00
%CompositeAdbInterface%     = USB_Install, USB\VID_0BB4&PID_0C02&MI_00

请注意,您将这些行添加到32位和64位部分中,以与教程中的示例相匹配。

Now go back up to the unknown device that appeared in Device Manager when you switched on device USB debugging and right click on this item (has yellow exclamation mark), right click on it and then select Update Driver Software, and then Browse My Computer, Let Me Pick, click on the Have Disk button and browse to find the myname.inf. Continue to agree to all the prompts warning you it might not be the right driver. As the final step, Windows should have identified the device as Android ADB Interface and once that is done, you should be able to go back, open your CMD window and run the command "adb devices" as instructed in this tutorial and now you should see that the phone is now discovered and communicating.

现在您可以开始使用adb命令了。


我有一部摩托罗拉Razr手机,但我很难识别我的设备。 我所做的是:

1 -从命令提示符(作为管理员)-> adb kill-servers

2 -下载摩托罗拉设备管理器这里-> https://motorola-global-portal.custhelp.com/app/answers/detail/a_id/88481

3 -我一直等到安装完成。

4 -从命令提示符(管理员)-> adb设备


您必须从SDK管理器下载驱动程序(额外→谷歌USB驱动程序)

然后你必须在Windows中安装USB驱动程序(对我来说在Windows 8.1中是有效的):

(从http://developer.android.com/tools/extras/oem-usb.html#InstallingDriver:复制粘贴)

Connect your Android-powered device to your computer's USB port. Right-click on "Computer" from your desktop or Windows Explorer, and select "Manage". Select "Devices" in the left pane. Locate and expand "Other device" in the right pane. Right-click the device name (such as Nexus S) and select "Update Driver Software." This will launch the "Hardware Update Wizard". Select "Browse my computer for driver software" and click "Next." Click "Browse" and locate the USB driver folder. (The Google USB Driver is located in <sdk>\extras\google\usb_driver\.) Click "Next" to install the driver.


在Nexus设置开发者菜单中打开调试(点击“关于平板电脑”7次进入该菜单)。

该死的魔术!


启用设备中的开发人员选项。开启开发者模式,设置->关于话机,连续8次轻按“构建号码”选项

进入设置->开发人员选项并打开USB调试

从上面的步骤,它没有工作,尝试这一步,转到设置->安全,并打开允许未知资源


安装三星Kies并使用他们的工具重新安装设备驱动程序,最终在我的Galaxy S3和Tab S 8.4上起了作用


你最近更新了安卓系统吗?我更新到棒棒糖,突然间我没有了adb设备。嘘!我花了一段时间尝试了几件事,但都无济于事。然后我进入我的开发人员选项,你瞧,“USB调试”被关闭了。愚蠢的谷歌。在把它重新打开后,它立即显示出来,我又开始工作了!


进入DeviceManager,右键单击android设备,选择“卸载驱动程序”。 拔下插头,重新插上…然后,当你的电脑安装所需的驱动程序时,你的设备上会弹出一个弹出窗口。点击弹出的“允许”。 当您在命令提示符中输入“adb devices”时,可以看到您的设备。


如果设备处于MTP模式,则调试时可能不可见。有些设备只在PTP模式下工作(甚至在“仅充电”模式下)。

可以在“设置”中更改>开发人员选项>网络> USB默认配置> PTP。

此外,你会在你的android设备上收到一个通知,要求你确认USB配置设置的变化,并允许它。

注意:您可以通过以下链接打开开发人员选项: 启用开发人员选项


对于Windows,只要结束所有与Blue堆栈相关的进程或任何类似的模拟器(如果您正在使用)。

为我工作。


我偶尔还会遇到这种情况,如果我拔掉它,然后把它插回不同的端口,它通常会工作。我用的是Linux,但之前在Windows上也发生了同样的事情。


正常情况下,SDB会在**android-sdk-windows\extras\谷歌\usb_driver**路径下下载驱动程序

以下是对我有用的步骤:

打开USB调试开关。 执行到设备管理器,右键单击ADB设备,然后单击更新驱动程序软件。 选择“浏览我的计算机以获取驱动程序软件” 选择“让我从计算机上的设备驱动程序列表中选择” 点击“拥有磁盘”选项。 选择驱动路径**android-sdk-windows\extras\谷歌\usb_driver** (sdk路径) 7.从显示的车手列表中选择第一个车手。

希望它能起作用。


在MTP模式下拥有ADB

如果你在设备管理器中没有找到任何ADB设备(没有带有感叹号的设备)(检查了手机上的所有开发人员设置),请执行以下操作:

在设备管理器中:

UpdateDriver->曼纽尔安装->在我的计算机上搜索->从已安装的驱动程序列表中选择->,然后选择一个有usb字在它(不是MTP)。

编辑:在那之后,你会有2或3个外设,一个用于USB,一个用于ADB,使用通常的方法安装ADB驱动程序(见第一个答案)


显然有很多不同的问题可能会导致这种情况(以及与这些问题相关的很多不同的解决方案)。所以想想所有的解决方案!

如果你之前让这台手机和电脑一起工作,但它们不再工作了,这可能是你电脑上的某个特定程序,而不是你手机上的问题。有些程序安装/使用他们自己的adb,并且只有其中一个可以同时连接到你的手机。我认为这是一个竞态条件,所以有时它会连接得很好。

运行adb的一些程序:

HTC同步管理器-卸载这个。

chrome://inspect -让你在你的手机上查看localhost。你用完就把窗户关上。


对于我的Nexus 6P来说,从谷歌下载驱动程序帮助解决了这个问题。下面是带有文档的URL。在这里你可以下载驱动程序本身。

附注:我看到一些人建议从互联网上随机下载一些驱动程序。虽然这可能会有所帮助,但在我看来,从非官方的地方下载未知的驱动程序太危险了。所以谷歌的一个对我来说很好:)


此外,在android工作室,你可以通过SDK管理器安装谷歌USB驱动程序,你应该在这之后设置。


如果你为Nexus启用了开发者选项和USB调试,win-usb应该可以工作。

你的驱动程序是否正确的一个标志是它在设备管理器中的名称中是否包含ADB。

对于我的Galaxy系列,我安装了一个驱动程序,但不是ADB驱动程序。

对于许多非nexus安卓系统,win-usb驱动程序将无法工作。相反,您需要安装一个OEM驱动程序:https://developer.android.com/studio/run/oem-usb.html

这最终让我得到了一个ADB兼容的驱动程序,在切换到PTP后,ADB终于能够找到我的设备。


我找到了解决我的问题的办法。

进入工具->布局检查器。 按几次重启按钮。

我不知道它是如何与ADB连接的,但它是有效的。


安装ADB驱动程序的简单方法

我总是使用ADB驱动安装程序为任何移动安装ADB驱动程序。你只需要点击安装按钮。都准备好了!

如果你的设备没有在这里列出,那么你可以启用你的开发人员设置,检查你的USB线。


如果你熟悉Linux,就用Linux代替Windows。在树莓派上,这样做

apt-get install android-tools-adb andoid-tools-fastboot

没有特殊的USB驱动程序需要,它只是工作。Android是基于Linux的,所以你更多的是在原生模式下工作。我在这里看到的许多问题都是Windows的问题。osx在这方面也可能比Windows有优势。Adb和fastboot都有man(手册)页面,可以从Linux中访问。

最初的问题:当手机处于fastboot模式时,我在adb中没有看到任何设备,adb和fastboot似乎是互斥的,你一次只能使用其中一个。USB调试必须打开。


确认您拥有正确的平台SDK工具

对于Windows 10,由于Visual Studio 2017 EMDK为Xamarin提供的版本不够,不得不从Android手动下载最新的平台SDK工具。除了adb.exe设备,其他设备都正常工作。

https://developer.android.com/studio/releases/platform-tools

手动下载平台工具后,无论USB配置(充电、MTP等),设备都显示出来。

在此阶段安装模拟器设备还有助于查看问题是出在adb还是物理设备上。

List of devices attached
12345D1234      device
emulator-5554   device

这是清单上的新成员。

检查您的防病毒软件没有阻止/屏蔽平台-工具目录中的adb.exe。如果你在SDK“platform-tools”目录中找不到adb.exe,那么它很可能已经有了。

当地C:\Users\ \ AppData \ \ Android Sdk \ \平台工具\ adb.exe

我用的是AVG,它认为它是一个IDP,所以它有一个vault dit。一般的病毒。 您可以将它作为一个异常添加,以允许它运行,并从保险库恢复它。

我的症状是,android-studio“工具”->连接助手会识别列表中的usb设备,但adp重启按钮仍然是灰色的。因为它找不到exe,但它没有抱怨,只是挂了。

只有当我手动尝试通过命令行弹出adp进程时,我才看到adp.exe丢失了。

希望这能为其他人节省很多时间。


首先感谢@rmsyk的帖子。

对于我的问题,在长期使用魅族C9 Pro后,我只需要参考制造商的android ADB驱动程序(没有特殊的驱动程序),它通过以下步骤在我的Windows 7 PC上解决了。

一定要 安装最新版本的ADB和Fastboot和所需的驱动程序。 启用开发人员选项和USB调试。 开启媒体文件传输(MTP模式)。 手动替换c:\ users \ username \。然后杀死进程'adb.exe'如果发现从Windows任务管理器和使用adb设备,最后我的设备成功列出,只是确认PC为可信的。

注:

Android Studio在早些时候被卸载了,我也试图重新安装,但根本不是一个解决方案。 尝试了adb kill-server & adb start-server,但也不是解决方案。


问题:设备没有出现在vscode和ABD接口-没有发现驱动程序

解决方案:

Enable USB debugging in mobile. Connect your mobile and laptop using USB cable go to https://developer.android.com/studio/run/win-usb click on the "Click here to download the Google USB Driver ZIP file (ZIP)" go to device manager -> other devices -> right click on ADB device and click update driver software. Select "Browse my computer for Driver Software" Select "Let me pick from list of Device drivers on my computer" double click "show all devices" Click on "Have Disk" option. Select the driver path android-sdk-windows\extras\google\usb_driver .Select android_winusb.inf file select Android ADB interface -> click next Click Yes to install, close the window upon success. Now you will see the device appearing in VSCODE.


可能有两个原因导致adb devices命令不适合您。你手机的USB驱动程序没有正确安装,或者你没有启用USB调试模式。

我创建了一个工具,使安装USB驱动程序一个点击的事情。

只需将您的手机以USB调试模式连接到PC。 运行我的工具

它将检测并安装特定于您的手机的驱动程序,并安装最新的ADB和Fastboot二进制文件。

该工具可在我的GitHub回购


除了常规设置(启用USB调试),我还必须在开发人员选项中选择启用OEM解锁。

这可能会降低设备的安全性,但这是你的设备,你知道你想做什么。

检查后,设备按预期运行,并出现在adb设备列表中。

一旦你完成了这些设置,你可以随时反转。


每次遇到这种情况,我都需要进入G6的开发人员选项,将USB配置设置为“midi”


我用的是装有安卓10系统的三星手机。它之前检测到,但在我的工厂数据重置Android 10手机后,在Windows 10上停止检测。虽然在Windows 11 PC上正常检测到。

当我深入挖掘一点,在android手机设置内的开发者选项中,有一个名为默认USB配置[设置->开发者选项->默认USB配置]的配置。当我选择那个选项时,出现了几个选项,默认情况下没有一个是被选中的。

我尝试选择一个接一个的选项,当我选择USB系留选项;然后android设备开始检测。