Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

adb does not recognize Android 4.0.4 device

Tags:

android

adb

I have two Android phones

  1. Alcatel One Touch 4030D, Android version 4.1.1, kernel version 3.4.0
  2. Highscreen Spark, Android version 4.0.4, kernel version 3.0.21-perf.

adb devices detects the Alcatel phone, but not the Highscreen phone.

I tried to run adb kill-server; adb start-server, but it didn't help. Switching between different connection modes (Media device (MTP), USB storage) didn't help either. USB debugging is enabled.

Here are the screenshots of the Developer options settings:

Screenshot 1

Screenshot 2

Screenshot 3

How can I make adb recognize the Highscreen device?

Update 1 (03.08.2013 19:00 MSK): Adding the line 0454 to adb_usb.ini didn't help.

Update 2 (03.08.2013 19:59 MSK): My attempt to follow the official Google recommendations failed because I couldn't find the drivers for the Highscreen Spark device.

like image 839
Dmitrii Pisarenko Avatar asked Aug 03 '13 15:08

Dmitrii Pisarenko


Video Answer


2 Answers

If you could setup an ADT on Linux or Mac, it will work out of the box. We were able to connect all sorts of devices to adb easily with ADT on Linux/Mac.

like image 66
gmarintes Avatar answered Sep 28 '22 00:09

gmarintes


If you haven't managed to connect it through usb, you can try the network connection. Add your device to the same network, then type in the command prompt:

adb connect your_device_ip_address
like image 42
Silvano Avatar answered Sep 28 '22 02:09

Silvano