My device was not found in Eclipse

My Android smartphone device is no longer detected in Eclipse. I tried restarting Eclipse, my system and my device, which does not fix it.

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

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

Why is my device not found and how to fix it?

+2
source share
2 answers

Try to kill adb server and restart it via command line

Android-, adb.exe, .

, . .

enter image description here

+3
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
0

All Articles