1.adb server is out of date.killing的解决办法:http://jingyan.baidu.com/article/d621e8da0dee022865913fce.html
2.GENYMOTION问题之an error occurred while deploying a file install_failed_no_machine_abis:
参考:http://www.hongyanliren.com/2014m12/22966.html、http://download.csdn.net/detail/iaiti/8224603
升级最新的Android Sdk,发现Android不能发现genymotion模拟器,同时使用adb shell命令发现错误如下:
$ adb shellaadb server version (32) doesn't match this client (35); killing...
error: could not install *smartsocket* listener: Address already in use
A
ADB server didn't ACK
*
* failed to start daemon *
error: cannot connect to daemon
或C:\Users\596555>adb start-server
adb server version (32) doesn't match this client (36); killing...
error: could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037:
通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 (10048)
could not read ok from ADB Server
* failed to start daemon *
error: cannot connect to daemon
解决方法:原来是genymotion中的adb命令被占用冲突了,直接打开genymotion的Setting,切换到第四个标签页(ADB),选择Use custom Android Sdk tools,然后选择我们开发使用的Sdk路径即可。(参考:http://blog.csdn.net/guijiaoba/article/details/51034695)
来源:https://www.cnblogs.com/ailisatest/p/5764686.html