Reputation: 18489
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
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
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
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
Reputation: 4842
Upvotes: 10
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