Reputation: 3315
So I have a physical Google Glass device attached to my laptop running Windows 8. In Windows Explorer it shows an attached 'Glass 1' device. However when I run a Hello Glass test project in the 'Android Device Chooser' in Eclipse there are no selectable running Android devices. Similarly when I run adb through command prompt, 'adb devices' brings up an empty list of attached devices.
What is the issue here and how can I get Eclipse/adb to see the Glass device?
Upvotes: 1
Views: 1612
Reputation: 306
I struggled for quite a few hours getting Glass recognized by adb in Windows 7. The two answers above contain essential info, but for me one additional step was necessary:
turn off automatic driver installation in Windows
Computer -> Properties -> Advanced system settings -> Hardware -> Device Installation Settings -> "Do you want Windows to download driver software and realistic icons for your devices?" -> "No, let me choose what to do" -> "Never install driver software from Windows Update"
Then, delete the existing driver and reinstall from the adk directory as above. Before I had changed the driver installation setting, Windows had been installing its idea of the "best driver" as soon as the device was connected and refusing to replace when I attempted to update with the real Google driver.
You're on the right track if Glass shows up under "Other devices" after removing the existing driver, and if it shows as "Android Composite ADB Interface" after installing from the android sdk extras directory. Good luck.
Upvotes: 1
Reputation: 990
I've been through this very issue multiple times over the last few days (doing some Glass dev work for my company). What you're going to want to do is this:
Disclaimer: I've done all my dev work on Windows 7, so this may not be 100% accurate for Windows 8.
Upvotes: 6