Which driver need to install in my android device for running my app?

邮差的信 提交于 2019-12-19 11:47:25

问题


I bought intex mobile for testing my android application in real device. However this device is not present in the list of devices provided by android in OEM USB Driver list. I checked intex official site but not sure exactly which driver need to install. Can you please tell me exactly which driver i need to install so that i can run my application from eclipse in my "intex cloud y11" device. For website URL click here intex website

Many Thanks.


回答1:


if you are using windows, Download the latest Universal usb driver or whatever you want. There is a file "android_winusb.inf" inside that driver pack. Open it with a text editor like notepad. If you are using windows 64-bit, search for "[Google.NTamd64]" inside that file. copy one of the devices listed below that. something like this:

;
;Google NexusOne
%SingleAdbInterface%        = USB_Install, USB\VID_18D1&PID_0D02
%CompositeAdbInterface%     = USB_Install, USB\VID_18D1&PID_0D02&MI_01
;

Replace those VIDs and PIDs with your device's. You can find it in Device Manager. Right click on your device and click on Properties. then under Details tab you can find all the information you need. select "Hardware Ids" in Property. or "Bus relations" shows everything you need.

after replacing those values, you can change the name "Google NexusOne" to whatever you want.

then save the file and driver for your device is ready.



来源:https://stackoverflow.com/questions/24124804/which-driver-need-to-install-in-my-android-device-for-running-my-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!