Android Studio是否有任何修复方法可以在Macbook Pro中断开测试设备的连接?

时间:2016-07-28 15:49:05

标签: android macos android-studio device

我正在开发Android应用程序,我正在使用Macbook Pro,Android Studio 2.1.2 Build#AI-143.2915827,JRE 1.8.0_91和带有Android 6的Samsung S6设备来测试我的应用程序。问题是android studio在某段时间后断开了我的设备,它甚至没有在列表中显示我。我已经尝试了几乎所有我在互联网上找到的解决方案。

1) Kill adb server and start it again,
2) Unplug and plug back in device,
3) Unplug device, turn off developer mode, turn on developer mode in device, clear usb debugging authorizations, plug back in device,
4) Change SDK default location in macbook,
5) Restart test device and plug in,
6) Download updated SDK and replace old platform-tools folder 
7) Tried changing cables
8) Cleaned and reformatted Macbook with new OS

(我找到了第六个解决方案here

我在网上找到的几乎所有建议/答案。但它仍然无法正常工作。那么有谁知道如何解决这个问题呢?我无法在此设备上测试我的应用程序。我没有任何其他设备,我没有任何其他选项来测试我的应用程序。任何人都能告诉我这个问题是否解决了android studio频繁断开测试设备的问题?

感谢。

4 个答案:

答案 0 :(得分:6)

我也一直面临同样的问题。在一些挖掘中,发现该问题已经reported,可能很快就会出现问题。使用以下script作为断开连接问题的解决方法修复 -

#!/bin/bash

cat << EOF
###########################################################
# Workaround adb disconnecting issue on macOS Sierra
#
# More info:
# https://code.google.com/p/android/issues/detail?id=219085
# credits to: hans...@meetme.com, vs...@google.com
###########################################################

EOF

function each_device() {
  DEVICES=( $(adb devices | tail -n +2 | cut -sf 1) )

  for DEVICE in ${DEVICES[@]}
  do
    adb -s ${DEVICE} $@
  done
}

function monitor_adb () {
  adb start-server
  echo "[$(date)] adb started"

  while [ "$(each_device shell echo 1)" ]; do sleep 5; done

  echo "[$(date)] adb is broken, restarting"

  adb kill-server
  adb start-server || adb start-server
  each_device reverse
}

while [ true ]; do time monitor_adb ; done

只需将上述代码保存为 .sh 文件,然后使用终端运行即可。现在你不会面临断线问题。

答案 1 :(得分:1)

Android SDK平台工具更新为 24.0.4 或更高版本

查看问题报告here

答案 2 :(得分:1)

我通过从 USB 3.0 更改为 USB 2.0 来修复它。 类似的答案在这里:Android device keeps disconnecting from adb

答案 3 :(得分:0)

For me it was changing the usb port that fixed it.