idish
idish

Reputation: 3260

Unable using my device to run my application

I have Windows 7 32 bit and I'm trying to use a device to run my application , I installed the USB Driver adb for samsung captivate (that's my device) as in that link, it says install success, but after trying to run my application in my device, Eclipse doesn't recgonize my device(It is connected by USB).

What am I doing wrong?

Upvotes: 0

Views: 74

Answers (2)

ThomasW
ThomasW

Reputation: 17307

adb's connection to the device is fickle. Try running these commands:

adb kill-server
adb devices

Sometimes it takes several tries before it can connect. (My experience is on OS X, Windows might be a bit different.)

Upvotes: 0

Eldhose M Babu
Eldhose M Babu

Reputation: 14510

Please check whether USB debugging is set in the phone.

In phone go to : Settings -> Applications -> Development -> USB Debugging.

Upvotes: 1

Related Questions