ZTE V9 not detected by ADB

2020-08-09 11:15发布

I've spent over an hour trying to make ADB detect my ZTE V9 on Ubuntu 11.04. It's not a permissions issue, adb devices simply doesn't print anything

List of devices attached

USB debugging is on

This is what my android rules look like

/etc/udev/rules.d/51-android.rules

SUBSYSTEM=="usb", ATTRS{idVendor}=="19d2:0083" SYMLINK+="android_adb", MODE="0666" GROUP="plugdev" TEST=="/var/run/ConsoleKit/database", \ RUN+="udev-acl --action=$env{action} --device=$env{DEVNAME}"

This is the output of lsusb

Bus 002 Device 008: ID 19d2:0083 ONDA Communication S.p.A. 
Bus 002 Device 004: ID 046d:c01e Logitech, Inc. MX518 Optical Mouse
...

After editing android.rules I've restarted udev and restarted adb.

I've tried several modifications of this udev rule. I've also tried to use 99-android.rules instead of 51, but nothing changes.

Then, I've tried to manually edit ./android/adb_usb.ini, which after my edit looks like this

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0x19d2

But still, the device is not detected.

Up to now I have developed for a Samsung Galaxy S, which is detected inmediately

Thanks in advance!

sources used up to now:

XDA-developers

many other web sites

8条回答
地球回转人心会变
2楼-- · 2020-08-09 11:31

I solved this with the ZTE Warp Sequent by:

Setting the Connection Type on the device to "PC Software."

Going to "My Computer" and Right clicking USB_DRIVER, and selecting "Open."

Finally I found some executables inside, I ran them and viola! It worked.

查看更多
做自己的国王
3楼-- · 2020-08-09 11:37

I just clicked "eject" and it appeared in "adb devices" command

查看更多
\"骚年 ilove
4楼-- · 2020-08-09 11:39

Two things, maybe:

  1. Why your udev rule so complicated? Does it work with the simpler rule given here ? Not sure if its relevant (i don't know much on udev), but the previous link tells to only put the vendor id in {idVendor}, without the device id.
  2. This may seems stupid, but did you turn on USB debugging on the device? I got stuck on this some times ago.

Hope it helps.

查看更多
冷血范
5楼-- · 2020-08-09 11:48

This answered my problem (which is similar to yours Maraguez) Phone isn't recognized by ADB

Basically your computer is using the mobile device as a USB drive, you figure out how to eject or disable, and it'll pop up in adb.

查看更多
迷人小祖宗
6楼-- · 2020-08-09 11:49

A powered USB hub helped me with a certain device. Maybe the current from the USB port is not adequate for that USB device,

查看更多
老娘就宠你
7楼-- · 2020-08-09 11:55

Add in the /etc/udev/rules.d/51-android.rules file only this line:

SUBSYSTEM=="usb", ATTR{idVendor}=="19D2", MODE="0666", GROUP="plugdev"
查看更多
登录 后发表回答