我正在开发一个
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
几乎每一个我在网上找到的建议/答案.但它仍然无法正常工作.那么有谁知道我该如何解决这个问题呢?我无法在此设备上测试我的应用程序.我没有任何其他设备,我没有任何其他选项来测试我的应用程序.任何人都可以告诉我,如果这个问题有解决方案,android studio频繁断开测试设备?
谢谢.
解决方法
我也一直面临同样的问题.在一些挖掘中,发现该问题已经是
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