Using the command prompt i want to check if my HTC nexus one is connected to the pc using the "adb devices" command.
I have installed all the available packages for the Android SDK including Usb Driver package, revision 4 and i have the USB debbuging enabled.
I would like to change it to Usb Driver package Revision 3 since i have Nexus one. On the available packages i can find only the revision 4. How can i c开发者_如何学JAVAhange it back to 3 and maybe this will fix the problem?
Can you please help me to find out what the problem is and how to solve it, so by using "adb devices" command i can be able to see my HTC Nexus one.
Thank you.
You can try:
Go to My Computer> Open Control Panel> Device Manager> Disk Drives
Then right click on "Google, Inc.Nexus One USB Device"
Update Driver Software
Choose the option “Browse my computer for driver software”
Put the path (C:\Program Files\Eclipse\android-sdk-windows\google-usb_driver)
Click next.
I hope this will help you..
Read this page and follow the steps
http://developer.android.com/guide/developing/device.html#setting-up
In archlinux I have:
SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666"
SUBSYSTEM=="usb",ATTR{idVendor}=="04e8",ATTR{idProduct}=="681c",SYMLINK+="android_adb"
SUBSYSTEM=="usb",ATTR{idVendor}=="04e8",ATTR{idProduct}=="681c",SYMLINK+="android_fastboot"
精彩评论