Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to figure out how to debug applications directly on my phone (HTC Desire).

I've installed the USB driver that came with the phone and the phone is listed when using "adb devices".

How do I configure eclipse/ADT to launch on the phone instead of launching the emulator/virtual device?

share|improve this question

3 Answers

up vote 16 down vote accepted

http://developer.android.com/guide/developing/device.html

search for 'If using Eclipse, select run or debug as usual.' on this page

[edit]
new search term 'If using Eclipse, run or debug as usual'
[/edit]

share|improve this answer
lol. i've read that page dozens of times without finding that line. Thought it would be more complex to set it up :) – jgauffin Apr 28 '10 at 6:22
2  
sometimes these things just refuse to be seen - good luck :) – KevinDTimm Apr 28 '10 at 13:00
1  
This has changed since, now look for "If using Eclipse, run or debug as usual" – Hein du Plessis Mar 7 '11 at 9:05
@Hein du Plessis Absolutely correct. I was wondering myself how to switch from emulator-based debug to real-device debug, so I came across this but before even reading the aforementioned page, I simply tried to run a debug session as usual, without starting up first the emulator but instead connecting the USB cable to a real-device and lo-and-behold, everything worked just as I expected, without me having to configure anything. Nice! – srf Mar 29 '11 at 19:58
Then again, I only tried Ctrl+F11 (Run) and watched the LogCat coming to life. I haven't tried F11 (Debug) yet, so I don't know (yet) whether this needs the instructions on developer.android.com/guide/developing/device.html – srf Mar 29 '11 at 20:00

With an Android-powered device, you can develop and debug your Android applications just as you would on the emulator. Before you can start, there are just a few things to do:

1 Declare your application as "debuggable" in your Android Manifest. android:debuggable="true" to the element

2 Set up your device to allow installation of non-Market applications.

On the device, go to Settings > Applications and enable Unknown sources (on an Android 4.0 device, the setting is located in Settings > Security).

3 Turn on "USB Debugging" on your device.

On the device, go to Settings > Applications > Development and enable USB debugging (on an Android 4.0 device, the setting is located in Settings > Developer options).

4 Set up your system to detect your device. If you're developing on Windows, you need to install a USB driver for adb. If you're using an Android Developer Phone (ADP), Nexus One, or Nexus S, see the Google Windows USB Driver. Otherwise, you can find a link to the appropriate OEM driver in the OEM USB Drivers document. If you're developing on Mac OS X, it just works. Skip this step. If you're developing on Ubuntu Linux, you need to add a udev rules file that contains a USB configuration for each type of device you want to use for development. In the rules file, each device manufacturer is identified by a unique vendor ID, as specified by the ATTR{idVendor} property. For a list of vendor IDs, see USB Vendor IDs, below. To set up device detection on Ubuntu Linux: Log in as root and create this file: /etc/udev/rules.d/51-android.rules.

        Use this format to add each vendor to the file:
        SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"

        In this example, the vendor ID is for HTC. The MODE assignment specifies read/write permissions, and GROUP defines which Unix group owns the device node.

        Note: The rule syntax may vary slightly depending on your environment. Consult the udev documentation for your system as needed. For an overview of rule syntax, see this guide to writing udev rules.
        Now execute:
        chmod a+r /etc/udev/rules.d/51-android.rules

You can verify that your device is connected by executing adb devices from your SDK platform-tools/ directory. If connected, you'll see the device name listed as a "device."

If using Eclipse, run or debug your application as usual. You will be presented with a Device Chooser dialog that lists the available emulator(s) and connected device(s). Select the device upon which you want to install and run the application.

If using the Android Debug Bridge (adb), you can issue commands with the -d flag to target your connected device.

Taken from: http://developer.android.com/guide/developing/device.html

share|improve this answer
+1 for the "step-by-step" solution. Sometimes we don't have time to read manuals ... – Magno C Apr 15 at 13:35

Sometimes you need to reset ADB. To do that, in Eclipse, go:

Window>> Show View >> Android (Might be found in the "Other" option)>>Devices

in the device Tab, click the down arrow, and choose reset adb.

share|improve this answer
I didn't see my device and reset adb has helped. Thank you! – Marx Nov 10 '11 at 22:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.