I assume you are talking about ADB. You didn't mention what platform you are running however. If it's Linux you probably either have to run adb as root or add the appropriate udev rules for your devices. If it's Windows you need to install ADB drivers. These can either be gotten from the manufacturer or if they haven't been released you can modify android_winusb.inf that is part of the driver you download from the SDK Manager. You need to add the Hardware ID under the approriate sections. They can be gotten through Device Manager. Below is an example for the Galaxy Nexus that I made for my own use.
;Google GalaxyNexus %SingleBootLoaderInterface% = USB_Install, USB\VID_18D1&PID_4E30 %SingleBootLoaderInterface% = USB_Install, USB \VID_18D1&PID_4E30&MI_01 %SingleBootLoaderInterface% = USB_Install, USB \VID_18D1&PID_D001&REV_0216 %CompositeAdbInterface% = USB_Install, USB\VID_04E8&PID_6860&MI_01 %CompositeAdbInterface% = USB_Install, USB \VID_04E8&PID_6860&REV_0216&MI_01 On 2 Jan, 23:55, niksbin <[email protected]> wrote: > Hi Everyone, > > I am getting started with the new SDK 4.0. I have everything set up > for development, but I cannot connect a device to the PC via USB. I > am trying to get it to work with HTC Rezound (v2.3.5), XYBoard 10.1 > tablet (v3.2), and Galaxy Nexus 16GB (v4.0.2) devices. But I think I > am missing something. > > Can someone please help me? > > Your support is greatly appreciated. > > Thanks. > > Sincerely, > Nikhil -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

