ADB does not recognize the xp7 sonim

0

I'm trying to catch logcat from a sonim xp7 device with android 4.4.2 I've already enabled the developer options and turned on USB debugging, I installed adb via sdk for linux and windows (I used the USB driver itself device for windows) but in neither system does adb recognize the device. Whenever I run adb devices on the command it returns nothing and when running adb logcat it returns waiting device.

    
asked by anonymous 01.07.2015 / 20:04

1 answer

0

After commenting on your question yesterday I had enough trouble connecting to an HP 7.1 tablet. The manufacturer's website simply does not provide a driver.

The solution briefly based on the links at the end of this post is, use the usb driver provided by google. Usually found in the SDK directory:

  C: \ Users \ UserName \ AppData \ Local \ Android \ sdk \ extras \ google \ usb_driver \ android_winusb.inf

In this file, I had to add the lines to my specific device:


Ifyourdriverisalreadyinstalled,justgetthemanufacturerID,rightaftertheVID_:

  

USB\VID_03F0&PID_6C1D&MI_01

AddthisIDtotheADBdevicesconfigurationfile:

  

C:\Users\User.android\adb_usb.ini

>#ANDROID3RDPARTYUSBVENDORIDLIST--DONOTEDIT.>#USE'androidupdateadb'TOGENERATE.>#1USBVENDORIDPERLINE.>0x03F0

Iusedtheandroid_winusb.inifiletoinstalltheAndroidDeviceDriveronmyWindows.ItworkedonlyonWindowsXP,IhavenottesteditagainonWindows8.Iknowthatonwindows8itisnecessarytodisabletheunsigneddriverinstallation.

AfterthisrestartADB:

adbkill-serviceadbstart-service

Oncethiswasdone,thedevicewasreadbyADB.

Source:
link
link

    
03.07.2015 / 21:07