Android SDK DDMS in Eclipse does not recognize my Android phone

I just bought a ZTE Cricket X500 running 2.3.4 with the goal of testing Android apps. When I launch DDMS in the Eclipse Android SDK, the device is not specified. The phone is in debug mode, Unknown sources are included, and as far as I can tell about the need to install USB drivers. In addition, I have β€œAndroid Dev Phone 1,” and DDMS can recognize this. My computer is running Windows 7. Any theory about what might happen?

+7
source share
3 answers

I think this is because of your drivers. Therefore, install the drivers for your device on your computer, and then try using it in dubug mode. therefore, for this you must enable the device in debug mode.

Hope this helps you.

+6
source

try the following commands:

adb kill-server adb start-server 

for some reason this works if the device is not specified

+9
source

Have you looked here and done everything you need?

As the link says, if you are on a Windows or Linux machine, you need to tell your system to find out the provider ID for your phone. Hope this helps.

+3
source

All Articles