Jithu
Jithu

Reputation: 1478

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?

Upvotes: 1

Views: 1756

Answers (3)

mjmcull
mjmcull

Reputation: 56

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

Upvotes: 0

nish
nish

Reputation: 151

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: ID 18d1:0003 Google Inc. 
......

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

Upvotes: 5

Arun C
Arun C

Reputation: 9035

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.

Upvotes: 0

Related Questions