0

I am using Micromax Unite A092, for USB debugging in Ubuntu 12.04. I enabled "USB debugging" from developer options and "connected as a media device".
But ./adb devices does not show it.

I tried
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1c9e", ATTRS{idProduct}=="7f10", MODE="0666" writing in /etc/udev/rules.d/51-android.rules but no luck.

The output of lsusb is-

Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 036: ID 1c9e:7f10 OMEGA TECHNOLOGY 
Bus 001 Device 029: ID 0cf3:3004 Atheros Communications, Inc. 
Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. 
Bus 002 Device 003: ID 04f2:b3bb Chicony Electronics Co., Ltd

could you please guide me. This time I am following connect micromax A70 android phone to eclipse

Community
  • 1
  • 1
umesh
  • 1,148
  • 1
  • 12
  • 25

1 Answers1

2

You need to add your USB Vendor ID to ~/.android/adb_usb.ini:

echo "0x1c9e" >> ~/.android/adb_usb.ini

and restart adb:

adb kill-server
adb devices
Alex P.
  • 30,437
  • 17
  • 118
  • 169