Search code examples
androideclipseadteclipse-adt

Eclipse - Target “unknown” in Android device chooser


I recently root my htc explorer having OS version 2.3.3, after root i installed OS version 4.4.2. After doing this i am unable to use USB debugging because the Target is set to UNKNOWN. I have tried many tricks but nothing works.

enter image description here


Solution

  • From here :Here

    1) Try changing the ADB connection timeout. I think it defaults that to 5000ms and I changed mine to 10000ms to get rid of that problem.

    If you are in Eclipse, you can do this by going through

    Window-> Preferences -> Android -> DDMS -> ADB Connection Timeout (ms)

    2)Try to unplug and then again plug the cable. It seems that sometimes eclipse do loose the connection with Device. Sometime you might need to plug in other USB port.

    3) You might need to kill adb process and restart it.

    adb kill-server and then adb start-server

    Check out Here as well.