标签:android应用 android开发 android studio
参考博客地址:http://blog.csdn.net/zhqshx/article/details/39339903android studio 不能单点debug 报错信息: Connected to the target VM, address:‘localhost:8600‘, transport: ‘socket‘
http://stackoverflow.com/questions/18907539/a-proper-way-to-debug-a-service-in-android-studio
(该链接为正解:由于一个app中注册了多个进程,所以必须选中其中一个进程进行调试)
http://stackoverflow.com/questions/21745143/android-studio-cant-connect-to-debug-devices
Linux下面查看端口参考了这篇博客:http://blog.csdn.net/spring19840513/article/details/6440241
查看到端口被程序占用:zuozheng@zuozheng:~$lsof -i:8600
COMMAND PID USER FD TYPEDEVICE SIZE/OFF NODE NAME
java 9512 zuozheng 484u IPv4212534 0t0 TCP localhost:8600 (LISTEN)
杀死对应程序:sudo kill9512
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:android应用 android开发 android studio
原文地址:http://blog.csdn.net/chenxu6/article/details/47108849