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?
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:
- If you haven't yet, install the Google USB Driver package from the Android SDK manager.
- Open the Device Manager, find the device that's showing up as Glass 1, right click, select "Update Driver Software..."
- Browse for the drivers, navigate to [Android install folder]\android-sdk\extras\google\usb_driver, click next.
- Let it install the drivers. If the device is now showing up as "Android Composite ADB Interface", you're good to go and it should appear in adb (assuming you enabled debug on the device itself). If it's just showing up as "Android ADB Interface" without the "Composite", uninstall the drivers, making sure to check the "Delete the driver software..." checkbox, unplug/replug the device, and go back to step 2.
Disclaimer: I've done all my dev work on Windows 7, so this may not be 100% accurate for Windows 8.