Ben Pearce
Ben Pearce

Reputation: 7094

Android SDK DDMS in Eclipse not recognizing my Android Phone

I just purchased a ZTE Cricket X500 running 2.3.4 for the purpose of testing my Android apps on. When I start the DDMS in the Eclipse Android SDK the device is not listed. The phone is in debug mode, Unknown Sources is enabled, and as far as I can tell the neccesary USB drivers have been installed. Furthermore I have a "Android Dev Phone 1" and the DDMS is able to recognizing that. My computer is running Windows 7. Any theories as to what might be going on?

Upvotes: 7

Views: 9683

Answers (3)

Alex Paino
Alex Paino

Reputation: 250

Have you looked here and done everything required?

As the link says, if you are on a Windows machine or Linux machine, you need to tell your system to recognize the vendor ID for your phone. Hopefully this helps.

Upvotes: 3

Rodrigo Amaro Reveco
Rodrigo Amaro Reveco

Reputation: 5012

try these commands:

adb kill-server
adb start-server

for some reason, this works for if the device isn't listed

Upvotes: 9

Silvans Solanki
Silvans Solanki

Reputation: 1267

I think it is because of your drivers, So install drivers for your device in your computer, then try to use it in dubug mode. so for that you have to put your device in debug-gable mode.

Hope this will help you.

Upvotes: 6

Related Questions