Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ADB server didn't Acknowledge [duplicate]

I could not run the android application never on my laptop. Eclipse gives same error constantly, that is "ADB server didn't Acknowledge"

I've tried everything, restart adb from ddms view, from command line (kill-server, start-server), from task manager and restart eclipse. When I manage to start adb server and re-open eclipse, as soon as I run the android application, same error comes to console; ADB server didn't ack.

Could you give an idea except restarting adb

like image 786
ydmpcn Avatar asked Oct 06 '14 13:10

ydmpcn


People also ask

How do I fix an ADB connection error?

In tools menu,Android-> untick enable adb Integration and Then OPEN widows task manager n manually end process adb.exe This also solved my issue as der were multiple adb.exe running. Show activity on this post. Restart the computer. Now, disconnect the device, connect it, Make sure USB debugging Option is enabled.

Why ADB is not recognized?

You may also get the “ADB command not found” error if you have an outdated version of ADB and Fastboot drivers. Installing the latest Android SDK Platform-tools on your PC might fix the problem. If you are trying to run ADB command from a location where 'adb.exe' and 'fastboot.exe' are not present.

How do you fix Cannot reach ADB server attempting to reconnect?

This could be some configuration problem with you android studio try to delete your . android file in your users folder and restart android studio(proceed with caution). first try with android emulator, make sure to keep your android sdk up to date. give some to android studio in first initialization.


1 Answers

Killing the process adb.exe in the TASK MANAGER (to open task manager CTRL+Shift+Esc) solves it in my case. After killing it run adb start-server or adb devices and you should be fine.

enter image description here


Incase if that doesn't work

We can solve this issue so easily.

  1. Open command prompt, cd <platform-tools directory>
  2. Run command adb kill-server
  3. Open Windows Task manager and check whether adb is still running. If it is, just kill adb.exe
  4. Run command adb start-server in command prompt

enter image description here


A way bit difficult approach

Command Prompt (cmd.exe)

netstat -aon|findstr 5037 

find process id of 0.0.0.0 enter image description here

make sure it's adb.exe

tasklist|findstr 1980 

enter image description here

kill this process

taskkill /f /t /im adb.exe 

enter image description here

get ADB back to normal

enter image description here

for more details check it from here

like image 80
Maveňツ Avatar answered Sep 19 '22 14:09

Maveňツ