Android报错 The connection to adb is down, and a severe error has occured.

------------------------------
 Android Launch!
 The connection to adb is down, and a severe error has occured.
 You must restart adb and Eclipse.

Please ensure that adb is correctly located at ‘D:\Android\adt-bundle-windows-x86_64-20140702\sdk\platform-tools\adb.exe‘ and can be executed.

大家在实际开发中,很容易出现这个问题,请看最后一句,意思是让你确认你的路径的adb存在,这里我们不去深究。

  • 步骤一:关闭你的Eclipse,genymotion。然后,打开genymotion设置,选择上面的  settings  设置。

找到 ADB 选项

选择第二项:Use custom Android SDK tools,点Browse进行路径的选择,

然后选择你自己所下载的Android sdk的路径,比如我是D:\Android\adt-bundle-windows-x86_64-20140702\sdk。

你选择正确了就会提示你

如果没有出现这句话,就说明你目录没有选正确。应该是下面这张图的目录

  • 步骤二:打开任务管理器,进程选项卡

手动关闭所有的adb.exe程序,观察是否还有adb.exe自动启动,没有自动启动的情况下就已经ok了,如果有自动启动的情况,可能是你没有关闭之前的模拟器。

  • 步骤三:重新启动你的genymotion模拟器,然后启动Eclipse,问题解决

PS:该解决方法思想步骤一来源于网络,其后内容本人进行完善。

时间: 2024-11-03 22:28:18

Android报错 The connection to adb is down, and a severe error has occured.的相关文章

Android 提示: The connection to adb is down, and a severe error has occured.

今天早上打开Eclipse,一直提示 The connection to adb is down, and a severe error has occured,无法执行程序.重新启动Eclipse.手机又一次连接电脑都无法解决,打开DDMS界面,找不到设备. 解决的方法例如以下: 1.进入DDMS界面,点击例如以下图的小三角(放在三角上提示view menu) 2.选择下拉列表的Reset  adb选项.问题解决.

eclipse运行Android项目出现“The connection to adb is down, and a severe error has occured. You must restart adb and Eclipse. ”

重启eclipse之后仍然出现同样错误,此时可以尝试一下方法: cmd打开命令窗口: 之后重启eclipse,基本可以问题解决!

Android基础(2)error:The connection to adb is down, and a severe error has occured.

出现:The connection to adb is down, and a severe error has occured. 启动android模拟器时.有时会报The connection to adb is down, and a severe error has occured.的错误 (1).先把eclipse关闭. (2)cmd 命令进入android\adt-bundle-windows\sdk\platform-tools文件中 (3)键入命令adb kill-server

The connection to adb is down, and a severe error has occured(Android模拟器端口被占用)

相信不少同学和我一样遇到这个问题,有时候搞的还要重启电脑,那究竟是什么原因导致的呢,很明显,你的端口被占用了,那下面给出终极解决方案 一.首先描述症状,如下图 二.出现问题了,首先确定你的sdk目录是不是真的在Console输出的那个位置,如果是的话.接下来现在就要看看到底是谁占用了端口.打开命令编辑器进入你的sdk下的platform-tools文件夹输入adb start-serevr  恭喜,说明你的端口被占用了 三.接下来需要确定被占用的端口号是多少,输入命令adb nodaemon s

The connection to adb is down, and a severe error has occured. Android ADB server didn't ACK * failed to start daemon. 解决方案

ADB server didn't ACK 这个问题会困恼很多的新手朋友,我以前刚开始做Android的时候也遇到过这个问题,不过自己百度,google啥的,也不知道怎么就给解决了,看到群里很多新手朋友都会问这个问题,说实话我也没有一个解决这个问题的终极方法(百试百灵的那种,哈哈),自己没遇到也没有认真的去对待他,今天,就是在今天,我打开Eclipse连上手机,准备调试程序,出现如下的信息 The connection to adb is down, and a severe error has

[Android] The connection to adb is down, and a severe error has occured

一.ADB server didn't ACK 在配置完Android环境后,运行第一个程序时,遇到了如下错误: ADB server didn't ACK * failed to start daemon * 它可能的原因是端口5037被占用,需要查找占用5037(Android默认)端口的PID,在cmd中输入: netstat -ano | findstr "5037" 输出进程: TCP    127.0.0.1:5037         0.0.0.0:0          

(重置adb.exe)android关于The connection to adb is down, and a severe error has occured.这个问题的解决办法

转自:http://www.sjsjw.com/kf_mobile/article/3_24710_14072.asp 这里补充一个更简单的方法(和下面的方法一样的效果): 有时在打开模拟器的时候会出现The connection to adb is down, and a severe error has occured.这个问题,这个问题的解决办法有两个: 方法一:找到adb.exe存放的地方(一般出现这个错误的时候,现在会提示adb.exe的路径),双击adb.exe让他运行就行了 方法二

ADT中,运行Android程序出错:The connection to adb is down, and a severe error has occured

原文地址:http://www.crifan.com/android_adt_the_connection_to_adb_is_down__and_a_severe_error_has_occured/ [总结] 出现 The connection to adb is down, and a severe error has occured 的问题,主要是由于adb没法正常运行起来: 而adb没法运行起来,主要是其端口被占用了: 常见的,可能的占用adb端口的,是你当前电脑上和手机相关的管理软件

The connection to adb is down, and a severe error has occured.(转)

启动android模拟器时.有时会报The connection to adb is down, and a severe error has occured.的错误.在网友说在任务管理器上把所有adb.exe关闭掉.重启eclipse.但试过不管用.所以在外国网站上找到一种可行的方法: 1.先把eclipse关闭. 2.在管理器转到你的android SDK 的platform-tools下, 如图: 3.键入adb kill-server ,如果adb关闭了会提示 server not ru