What driver do I need to install on my Android device to run my application?

I bought intex mobile to test my Android application in a real device. However, this device is not in the list of devices provided by android in the list of OEM USB drivers. I checked the official intex website, but not sure which driver to install. Could you tell me which driver I need to install so that I can run my application from eclipse on my intex cloud y11 device. For website URL, click here intex website

Thank you very much.

0
source share
1 answer

if you use windows, download the latest universal usb driver or whatever. Inside the driver package there is a file called "android_winusb.inf". Open it with a text editor such as notepad. If you are using 64-bit windows, look for "[Google.NTamd64]" inside this file. copy one of the devices below. something like that:

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

Replace these VIDs and PIDs on the devices. You can find it in the Device Manager. Right-click on your device and click Properties. then on the "Details" tab you can find all the necessary information. Select "Hardware Identifiers" in the Property. or "Bus Relations" shows everything you need.

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

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

0
source

Source: https://habr.com/ru/post/970855/


All Articles