Skip to content Skip to sidebar Skip to footer

Usb Vendor Id For Datawind By Ubislate

I am trying to run and debug my application on the device DATAWIND by UBISLATE. How can I find the USB Vendor ID?

Solution 1:

To connect the Android Debug Bridge (adb) with DATAWIND Ubislate 7C+, run a command in Ubuntu terminal

lsusb

it will list the connected usb's as

......Bus 001 Device 007:ID18d1:0003GoogleInc.......

in which 18d1 is to be taken as the vendor id. Then edit the /etc/udev/rules.d/51-android.rules as follows

SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", MODE="0666"

then restart the udev by

# /etc/init.d/udev restart

That's it, It is done now. Have to disconnect and reconnect the tablet with computer. For a check type in the terminal as

adb shell 

it will points to the root of tablet as root@android:/

or `type

adb devices

that gives

List of devices attached 
200804111413fc082   device

This is based on

How to register this tablet to Ubuntu udev list?

and the link provided in it.

http://clamel.netai.net/smartpad850i/enable_adb

Solution 2:

The list of Vendor IDs is here it seems that the device you specified does't has one. So you can not connect to Android Debug Bridge (adb), still you can copy the apk from bin folder of your project to your device, install and run it.

Solution 3:

USB vendor ids can be found at www.linux-usb.org/usb.ids. 18d1 Google Inc.

Post a Comment for "Usb Vendor Id For Datawind By Ubislate"