Developing on a Device

When building mobile applications, it's vital to test them on real devices prior to releasing them to users. This page covers what you need to know, including the types of devices that you can use, and how to set one up for developing and debugging.

Available Devices

Here are some options for obtaining devices capable of testing your applications.

Consumer devices

It's likely that one of your local mobile carriers offers an Android-powered device. Any Android-powered device (even one bought from your mobile carrier) is a perfectly good device for running and testing your own Android applications. You can write applications using the Android SDK and then install them directly onto the device for testing.

Check with the service providers in your area to determine which Android-powered devices are available.

Be aware that consumer devices are not designed to allow system image updates by the user. If you're interested in manually updating the device with custom system images, then you'll need a developer device such as the Android Dev Phone 1.

Android Dev Phone 1

The Android Dev Phone 1 is a SIM-unlocked and hardware-unlocked device that is designed for advanced developers. The device ships with a system image that is fully compatible with Android 1.0, so you can rely on it when developing your applications. You can use any SIM in the device and can flash custom Android builds that will work with the unlocked bootloader. Unlike the bootloader on retail devices, the bootloader on the Android Dev Phone 1 does not enforce signed system images. The Android Dev Phone 1 should also appeal to developers who live in geographies where local mobile carriers do not currently offer Android-powered devices.

To purchase an Android Dev Phone 1 device, you must first register as an Android developer on the Android Market site, if you haven't done so already. Once you've logged into your developer account on Android Market, you can purchase the device by following the link to "Development phones." To accommodate demand, there is a limit of 1 device per developer account, for now.

The device currently costs $399 (USD) (including free shipping in the US), and is available for purchase in 18 international markets, including the US, UK, Germany, Japan, India, Canada, France, Taiwan, Spain, Australia, Singapore, Switzerland, Netherlands, Austria, Sweden, Finland, Poland, and Hungary. We will continue to expand this program into new geographies over time. Check this page for updated information.

Android Dev Phone 1 devices are not intended for non-developer end-users. Because the device can be configured with system software not provided by or supported by Google or any other company, end-users operate these devices at their own risk.

Note that your Android Dev Phone 1 will not receive automated over-the-air (OTA) updates for the system image. System updates must be flashed manually. See the HTC site for a guide to Flashing your Android Dev Phone with a Factory System Image.

For full device specs and more information about obtaining an Android Dev Phone 1 device, see the Android Market site.

Setting up a Device for Development

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

  1. Declare your application as "debuggable" in your Android Manifest.

    In Eclipse, you can do this from the Application tab when viewing the Manifest (on the right side, set Debuggable to true). Otherwise, in the AndroidManifest.xml file, add android:debuggable="true" to the <application> element.

  2. Turn on "USB Debugging" on your device.

    On the device, go to the home screen, press MENU, select Applications > Development, then enable USB debugging.

  3. Setup your system to detect your device.
    • If you're developing on Windows, you need to install a USB driver for adb. Follow the steps below for Installing the WinUsb Driver.
    • 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 rules file:
      1. Login as root and create this file: /etc/udev/rules.d/51-android.rules.

        For Gusty/Hardy, edit the file to read:
        SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666"

        For Dapper, edit the file to read:
        SUBSYSTEM=="usb_device", SYSFS{idVendor}=="0bb4", MODE="0666"

      2. Now execute:
        chmod a+rx /etc/udev/rules.d/51-android.rules

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

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

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

Installing the WinUsb Driver

A WinUsb-based driver is needed in order to use your Android-powered device for development on a Windows machine. The USB installation package can be found in the <sdk>\usb_driver\ folder of your SDK package.

Note: If you are connecting an Android-powered device to your computer for the first time, folllow the procedure to "Perform a fresh installation." Android SDKs older than version 1.6 included a non-WinUsb-based driver for connecting your device. If you installed the older USB driver and it is working properly, you do not need to upgrade to the new driver. However, if you are having problems with the driver or would simply like to upgrade to the latest version, follow the procedure to "Upgrade an existing driver."

Before you begin installing or upgrading the USB driver, you must copy the USB installation package to a secure location on your computer. For example, you might want to create a directory at C:\Android\Windows\USB\install\ and move it there. Once you've moved the installation package, select the appropriate procedure below, based on your operating system and whether you're installing for the first time or upgrading.

  1. Windows Vista:
    1. Perform a fresh installation
    2. Upgrade an existing driver
  2. Windows XP:
    1. Perform a fresh installation
    2. Upgrade an existing driver

Caution: You may make changes to android_winusb.inf file found inside usb_driver\ (e.g., to add support for new devices), however, this will lead to security warnings when you install or upgrade the driver. Making any other changes to the driver files may break the installation process.

Windows Vista: Perform a fresh installation

To install the Android USB driver on Windows Vista for the first time:

  1. Connect your Android-powered device to your computer's USB port. Windows will detect the device and launch the Found New Hardware wizard.
  2. Select "Locate and install driver software."
  3. Select "Don't search online."
  4. Select "I don't have the disk. Show me other options."
  5. Select "Browse my computer for driver software."
  6. Click "Browse..." and locate the folder where you copied the installation package. As long as you specified the exact location of the installation package, you may leave "Include subfolders" checked or unchecked—it doesn't matter.
  7. Click "Next." Vista may prompt you to confirm the privilege elevation required for driver installation. Confirm it.
  8. When Vista asks if you'd like to install the Google ADB Interface device, click "Install" to install the driver.

Return to Setting up a Device for Development.

Windows Vista: Upgrade an existing driver

To upgrade an existing Android USB driver on Windows Vista with the new one:

  1. Connect your Android-powered device to your computer's USB port.
  2. Right-click on "Computer" from your desktop or Windows Explorer, and select "Manage."
  3. Select "Device Manager" in the left pane of the Computer Management window.
  4. Locate and expand "ADB Interface" in the right pane.
  5. Right-click on "HTC Dream Composite ADB Interface", and select "Update Driver Software..."
  6. When Vista starts updating the driver, a prompt will ask how you want to search for the driver software. Select "Browse my computer for driver software."
  7. Click "Browse..." and locate the folder where you copied the installation package. As long as you specified the exact location of the installation package, you may leave "Include subfolders" checked or unchecked—it doesn't matter.
  8. Click "Next." Vista may prompt you to confirm the privilege elevation required for driver installation. Confirm it.
  9. When Vista asks if you'd like to install the Google ADB Interface device, click "Install" to install the driver.

Return to Setting up a Device for Development.

Windows XP: Perform a fresh installation

To install the Android USB driver on Windows XP for the first time:

  1. Connect your Android-powered device to your computer's USB port. Windows will detect the device and launch the Hardware Update Wizard.
  2. Select "Install from a list or specific location" and click "Next."
  3. Select "Search for the best driver in these locations"; uncheck "Search removable media"; and check "Include this location in the search."
  4. Click "Browse..." and locate the folder where you copied the installation package.
  5. Click "Next" to install the driver.

Return to Setting up a Device for Development.

Windows XP: Upgrade an existing driver

To upgrade an existing Android USB driver on Windows XP with the new one:

  1. Connect your Android-powered device to your computer's USB port.
  2. Right-click on "My Computer" from your desktop or Windows Explorer, and select "Manage."
  3. Select "Device Manager" in the left pane of the Computer Management window.
  4. Locate and expand "Android Phone" in the right pane.
  5. Right-click "Android Composite ADB Interface" and select "Update Driver..." This will launch the Hardware Update Wizard.
  6. Select "Install from a list or specific location" and click "Next."
  7. Select "Search for the best driver in these locations"; uncheck "Search removable media"; and check "Include this location in the search."
  8. Click "Browse..." and locate the folder where you copied the installation package.
  9. Click "Next" to install the driver.

Return to Setting up a Device for Development.

↑ Go to top