kbrick wrote:
nz wrote:
hamsterhunter wrote:
Anybody figured out how to install the ADB driver for the Archos 32IT? There's no mentioning yet in the archos download section. I have put in a request with archos, but was hoping for a faster answer here...
Thanks!
...or on Windows:
Code:
echo 0x0e79 >> "%USERPROFILE%\.android\adb_usb.ini"
Then you can use the adb that comes with the R3 or R4 SDK (or probably also the one that is in current SVN trunk). Remember to "sudo killall adb" to get rid of all already running ADB servers.
For a developer newbie such as myself, can you explain exactly where this is entered? I assume everything from echo 0x0... to the end need to be entered into some tool that comes with the Android SDK, correct?
Also, for the sudo killall adb command, do I need to be telnetted into my device?
I have SDK for 1.6, 2.1-update1, and 2.2 installed, which I assume meets the R3 and R4 SDK requirement. Looks like there are multiple revisions of each API number.
All I wish to do is be able to easily take a screenshot from my PC. I have the SDK installed, but I just got an ARCHOS 32 and have not tried connecting it for development yet. I have installed and gotten the SDK running apps in the simulator, though.
Thanks for helping the new guy!
I have not been able to test the above yet because i have not got my Archos device yet, so i might not be the right one to answer, but i understand the command to add the vendor to the ini file which "Nz" writes below.
You write the command in the shell (Linux) or in the command promt (Windows).
So upen up a command prompt in Windows and just paste the code nz writes and hit enter.
The file adb_usb.ini is located in the .android folder which is created after following the instructions for setting up the sdk.
It contains rows for different vendors. In mine there is no vendor added as default
Code:
# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
so just open up a command prompt and enter the text
Code:
echo 0x0e79 >> "%USERPROFILE%\.android\adb_usb.ini"
And Archos is added as a vendor. Then the file will look like this:
Code:
# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0x0e79
Then follow the rest of the instructions to test the connection.