ADB is disabled in Android

I get this exception when I try to run the application

[2013-09-10 12:09:21 - EffectiveNavigation] The connection to adb is down, and a severe error has occured. [2013-09-10 12:09:21 - EffectiveNavigation] You must restart adb and Eclipse. [2013-09-10 12:09:21 - EffectiveNavigation] Please ensure that adb is correctly located at 'E:\Configured-Eclipse\adt-bundle-windows-x86-20130522\sdk\platform-tools\adb.exe' and can be executed. 

When I tried to use reset adb from eclipse it shows this error

 [2013-09-10 12:18:20 - adb] Attempting to restart adb, but version check failed! 

I also tried this from the command line.

 1.adb kill-server //kill all active server 2.adb start-server //start adb server 

Restart eclipse, but still the same error. Help solve the problem.

0
source share
4 answers

Finally it was a problem

COMODO Security module is disabled and everything worked ....

+2
source

If you installed some application that controls the phone, kill the application.

0
source

First of all, make sure that you can run adb.exe yourself without any errors. run it in "administrator mode" in cmd.exe, and also "adb.exe devices" should list the connected and recognized USB devices.

0
source

First check the update for eclipse ad.

===============. ========

  • Close eclipse and run the adb.exe process from the task manager.
  • run adb kill-server and adb start-server . then try again.

If an error occurred when "adb start-server"

Use netstat -abn to skip if there is a process that listens on port 5037 (the default adb port) and kills it. Then run "adb start-server" or just "adb devices"

0
source

All Articles