android studio 不能debug

参考博客地址:http://blog.csdn.net/zhqshx/article/details/39339903

android studio 不能单点debug 报错信息: Connected to the target VM, address:‘localhost:8600‘, transport: ‘socket‘

1.查看了stackoverflow以下博客 还是不能解决问题

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

2.初步判断是端口占用问题

Linux下面查看端口参考了这篇博客:http://blog.csdn.net/spring19840513/article/details/6440241

查看到端口被程序占用:[email protected]:~$lsof -i:8600

COMMAND  PID     USER   FD   TYPEDEVICE SIZE/OFF NODE NAME

java    9512 zuozheng  484u  IPv4212534      0t0  TCP localhost:8600 (LISTEN)

杀死对应程序:sudo kill9512

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-12-22 07:15:32

android studio 不能debug的相关文章

Android Studio 自定义debug签名文件keystore

Android Studio 自定义debug签名文件keystore

Android studio 添加debug keystore

Hi If you don't want to go for hard code all of this stuff , then go for below easy steps ->Your project ->Your Module ->Right click on your module ->go to open module settings ->Go to Signing section ->Specify all the attribute here and

Android studio修改debug.keystore

在android studio项目中配置自定义的debug keystore 方法/步骤 在项目的build.gradle中添加如下内容: android {    signingConfigs {        debug {            storeFile file("文件位置")        }    }}

Android Studio中debug和release模式默认的参数配置

The possible properties and their default values are: debuggable:表示是否可以在手机上调试程序. 在Eclipse中,只有android:debuggable="true"时我们才可以在手机上调试Android程序. 但是当我们没在AndroidManifest.xml中设置其debug属性时: 使用Eclipse运行这种方式打包时其debug属性为true,使用Eclipse导出这种方式打包时其debug属性为法fals

Android Studio配置debug下使用正式签名调试

今天在集成微信分享功能的时候,按照官方文档一步一步来写.这是向微信发送我们想要分享的内容,各类的方法大家去看文档,代码如下: IWXAPI api = MyApplication.getInstance().getWxApi(); if (!api.isWXAppInstalled()) { ToastFactory.getToast(activity, "您还未安装微信客户端").show(); return; } WXWebpageObject webpage = new WXWe

Android Studio debug调试教程

昨天公司领导批评我不会在Android  studio上debug    所以 今天利用休息的时间研究了一下  再此写一篇实用的文章希望大家喜欢 一.自己写的代码例子 protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); for (int i = 0; i < 10; i++) { //获取当前

Android Studio官方文档之构建和运行你的APP

Android Studio官方文档之构建和运行你的APP 本文由MTJH翻译,jkYishon审校. 前言 默认情况下,Android Studio设置新的项目并且部署到模拟器或者真机设备上,只需要点击几下.使用即时运行,你并不需要构建一个新的APK即可将改变后的方法和现有的应用资源应用到一个正在运行的应用程序中,所以代码的改变是即时可见的. 点击Run来构建并运行你的APP.Android Studio通过Gradle构建你的App,选择一个部署的设备(模拟器或连接的设备),然后把你的APP

Co-Debugging JNI with Android Studio and Visual Studio

Tutorials > Android > Integration with other tools > Co-Debugging JNI with Android Studio and Visual Studio Co-Debugging JNI with Android Studio and Visual Studio December 20, 2014 android, android studio, ndk Warning! This tutorial uses outdated

【Android】Android Studio 1.5+ 中混合调试Native和Java代码

[Android]Android Studio 1.5+ 中调试Native和Java代码 Android Studio 1.5+表示Android Studio 1.5版本以及以上. 网上大部分中文或英语教程还是停留在老版本的Android Studio的Debug的设置,要么不全.正好最近工作中要在Android Studio中调试C++代码,就来写一篇咯. Android Studio 1.5+的调试设置与之前有所不同. 而且新版中推出了一个Hybrid的调试:可以混合调试Native代码