Google USB Package Not Displaying in Mananger SDK

I recently downloaded and installed the Eclipse Java EE IDE: Indigo Service Release 2. I created a simple program that works well on the emulator; Now I want to try running it on an Android mobile device. From the Android developer site, I followed the instructions for this until I got to the point where I needed to find the USB driver folder for the Google USB driver found in sdk \ extras \ google \ usb_driver. I do not have this driver, so I started downloading it. I was told that it was found in the SDK manager in the "Advanced" section. I switched to Eclipse in Window> Android SDK Manger. I waited for this to be done, and then move on to Extra. Make sure that “Updates / New” is checked as well as “Installed”; however, the only tab on the Advanced tab is Android Support Package and nothing else.

And here I am ... stuck on what I need to do.

Any help would be greatly appreciated.

+8
android eclipse sdk
source share
4 answers

http://developer.android.com/sdk/oem-usb.html

You can get USB drivers for most devices from the manufacturer’s website listed here.

Regarding the Google USB drivers, I would make sure that you are using the latest version of the Android SDK tools and trying to run the program as an administrator.

+5
source share

I just noticed that the Google USB driver will not show educate the SDK manager from Eclipse ... However, it will open through the Start menu. (Also run it as Administrator).

+4
source share

I had a similar problem, and I traced my root cause for this error. I forgot to install the Google USB driver. This can be done using the SDK manager, i.e. Android studio-> File-> Settings-> Appearance and behavior-> System Settings-> Android SDK on the "SDK Tools" tab, check the "Google USB Driver" and "Apply".

+2
source share

I had a similar problem, and I traced my root cause for this error message in the log. XML validation error for http://dl-ssl.google.com/android/repository.addon.xml

If so, make sure your JDK / JRE version is 1.6 or higher.

If you are using the 64-bit version of Windows 7, make sure that you also update the x86 version of the JDK / JRE.

+1
source share

All Articles