Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I do app development on HP TouchPad running CyanogenMod 9 I have an HP TouchPad with CyanogenMod 9 installed, and am trying to build to the device from Eclipse. The IDE does not appear to recognize the device at all though. If problem is driver? Where can i find it?

share|improve this question

1 Answer

up vote 13 down vote accepted

The steps on how to do it are documented here: http://code.google.com/p/cmtouchpad/issues/detail?id=663

Just in case that link disappears, here's the breakdown:

1) Turn on MTP, which is disabled by default

by going to Settings > Storage > Menu (Upper right hand corner) > USB computer connection > Media Device (MTP).

2) Adding an HP Touchpad reference in android_winusb.inf

Edit the android_winusb.inf file included with the Google USB Drivers and add:

; HP TouchPad
%SingleAdbInterface%        = USB_Install, USB\VID_0BB4&PID_6860&REV_0227&MI_01
%CompositeAdbInterface%     = USB_Install, USB\VID_0BB4&PID_6860&MI_01

after the last lines of the [Google.NTx86] and [Google.NTamd64] sections.

3) Updated the drivers in Device Manager

right click the unknown cm_tenderloin device in Device Manager, tell it to update drivers, and point it to C:\android-sdk-windows\extras\google\usb_driver.

4) At that point adb should recognize the device but in an offline state which does't allow eclipse to run my app on the cmtouchpad. So...

5) Reboot the cmtouchpad at which point adb should hopefully recognize it as a device in "device" state.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.