2

My android smartphone device is no longer being detected in Eclipse. I have tried to restart Eclipse, my system and my device also which does not fix it.

My device is a 'Micromax canvas2' smartphone. My drivers are installed. I checked with other Samsung devices with a samsung driver and it works correctly.

I checked all the settings. Also check with eclipse Windows > Show view > Other .. > Device but no device found.

Why isn't my device found and how do I fix it?

Eric Leschinski
  • 123,728
  • 82
  • 382
  • 321
Bhavin Chauhan
  • 1,740
  • 1
  • 24
  • 44

2 Answers2

3

Try Killing the adb server and restarting it thru command prompt

go to your android skd directory where ever you have kept it and traverse to adb.exe which you will find inside platform-tools..

May be this will help you. same happened with me many times. I just restart the server at that time

enter image description here

DeltaCap019
  • 6,258
  • 2
  • 42
  • 66
0
Edit ~/.android/adb_usb.ini (or if you are running as root, check /root/.android)
Add 0x1bbb to the end of the file if it already exists, otherwise do: echo 0x1bbb >> adb_usb.ini
adb kill-server
adb start-server
Check output of adb devices for your device
Nirav Ranpara
  • 15,268
  • 4
  • 40
  • 57