ADB does not recognize Android 4.2.2 on ubuntu

0

I'm working on ubuntu 13.04 , and I just received a tablet from Android 4.2.2 directly from a manufacturer and I'm not getting it that ADB recognizes the tablet , and consequently I can not do debug .

I've tried:

  • restart Android and PC;
  • restart ADB (alias almost all ADB commands);
  • Android has USB debugging turned on;

I have already tested, with different SDKs, on ubuntu , on Windows XP, Windows 7 and Windows 8 and nothing. In windows if it goes to the device manager it will appear with the exclamation point.

I saw here that I needed to set the undev rules and followed these steps:

# lsusb 
  

Bus 001 Device 011: ID 1f3a: 100b

# sudo gedit /etc/udev/rules.d/99-android.rules
  

SUBSYSTEM == "usb", ATTR {idVendor} == "1f3a", ATTR {idProduct} == "100b",   MODE="0666", OWNER="my-login"

# sudo service udev restart

But it still does not recognize the device.

Source ubuntu-need-install-android-sdk

Can anyone imagine what it could be?

    
asked by anonymous 03.06.2014 / 10:47

1 answer

2

1. Ubuntu

You should go as sudo to the /etc/udev/rules.d/ directory and edit the 51-android.rules (if it does not exist, create).

Add this line:

SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"

Replacing the {idVendor} with the value in the table it provides on the site.

At the end, use: chmod a+r /etc/udev/rules.d/51-android.rules , remove and plug the device again.

Also, make sure you're running everything with the newer versions .

2. Windows *

If you install the manufacturer's Driver and it does not work, you will need to perform some steps.

In the device manager, browse to the Android Phone or Android Phone section and expand.

Right-click Android Composite ADB Interface and select Update Drivers .

Select Install from a list or specific location

Choose the Google USB Driver that is located in path_to_disk \ extras \ google \ usb_driver \ and continue.

* Some of these steps may be slightly different depending on the version, anything see the source with specific instructions for each version

Source: Using Hardware Devices and OEM USB Drivers .

    
03.06.2014 / 15:51