Android Killer
Android Killer

Reputation: 18489

Device is not showing in DDMS

I am developing a android application which is running perfectly in motorola CLIQ(i installed driver for this).But it is not working in Samsung galaxy phone(I have not installed driver for this phone).I think driver is not needed for this.Any idea or help ?

Upvotes: 3

Views: 21549

Answers (5)

Adnan Tariq Muhammad
Adnan Tariq Muhammad

Reputation: 17

To access these settings, open the Developer options in the system Settings. On Android 4.2 and higher, the Developer options screen is hidden by default. To make it visible, go to Settings > About phone and tap Build number seven times. Return to the previous screen to find Developer options at the bottom.

Upvotes: 1

Chiara Hsieh
Chiara Hsieh

Reputation: 3393

In my case, my phone (via usb) used to show up in Eclipse DDMS, but after few days it just disappeared. I had to open my command line tool, and type

adb kill-server
adb usb

And my phone appeared on DDMS devices window once again!

Upvotes: 2

David Prun
David Prun

Reputation: 8433

I had to root the device, after which DDMS logs started showing up as well as adb cmnd prompt performed "adb reboot" and other stuff.. phew..

Upvotes: 0

Huang
Huang

Reputation: 4842

  1. You need to install the driver from the manufacture to debug codes in your device.
  2. Make sure in Settings->Application->Development, tick the "USB debugging" choice.

Upvotes: 10

Paresh Mayani
Paresh Mayani

Reputation: 128428

Why you have to install the driver for every android device that you want to work with. Install the driver and then check how many devices are attached to the PC by using below command:

adb devices // list all the attached devices

Follow the 4th step mentioned here: Set up your system to detect your device.

Upvotes: 2

Related Questions