Auszug aus dem Android DEV Guide dazu, wie man ein Telefon zum Entwickeln nutzt:
Setup 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 rules file that contains a USB configuration for each type of device you want to use for development. Each device manufacturer uses a different vendor ID. The example rules files below show how to add an entry for a single vendor ID (the HTC vendor ID). In order to support more devices, you will need additional lines of the same format that provide a different value for the
SYSFS{idVendor}property. For other IDs, see the table of USB Vendor IDs, below.
- Log in 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"
It just works <3