I have the Archos 80 Xenon tablet, and for some reason i can't locate it in the device picker on my eclipse.
I have downloaded the adb from archos's site, and updated my usb driver.
Still nothing showing up, i really need help.
I have the Archos 80 Xenon tablet, and for some reason i can't locate it in the device picker on my eclipse.
I have downloaded the adb from archos's site, and updated my usb driver.
Still nothing showing up, i really need help.
if your device is not recognizable with adb you can use a manufacturer adb driver to fix the issue or add the device manually. Remember that, device software which help to recognize your device to windows and help you to transfer data is not the adb driver.
How to install a device manually?
Step 1 [Get the Google USB Driver]
from Android SDK manager install, Google USB driver from extras section.
Step 2 [Find the Device Hardware ID]
You will see something like bellow.
USB\VID_18D1&PID_4EE2&REV_0228&MI_00
USB\VID_18D1&PID_4EE2&MI_00
Copy these two line.
Step 3 [Update Your USB Driver]
Go to your device installation folder
Under sdk\extras\google\usb_driver you will see a file android_winsub.inf
Open the file
Go to Section [Google.NTx86]
you will see something like bellow(Do not worry about exact match of device name. ).
;Google Nexus Q
%SingleBootLoaderInterface% = USB_Install, USB\VID_18D1&PID_2C10
%SingleAdbInterface% = USB_Install, USB\VID_18D1&PID_2C11
Copy this and create a new entry just bellow with your device name. So new entry will look like this,
;My Nexus Q
%SingleBootLoaderInterface% = USB_Install, [Things you just copied on step 2]
%SingleAdbInterface% = USB_Install, [Things you just copied on step 2]
do the same for section [Google.NTamd64]
Step 4[Installation]
Show your newly modified android_winsub.inf
and install.
Final Step restart you adb.
adb kill-server
adb start-server
This may cause by a plenty of reasons. You might need to check the device support in Archos website. I've found the link(http://www.archos.com/support/support_tech/updates_adb.html?lang=en) for you. As far as I know, not every Android devices is ready for development out-of-box. But the solutions are quite similar: 1. Download the driver of your device and install it. 2. Edit "%USERPROFILE%\.android\adb_usb.ini" file and wirte "0x0e79" to specify your device vendor ID 3. After above, restart your adb server: cd "location of your platform-tools dir" adb kill-server adb start-server Above is from my personal experience, please feel free to correct me if I'm wrong :)