Android Studio无法调试 Couldn‘t attach to process

方案1:

端口被占用,需要杀死对应进程,但实际上该端口是AndroidStudio在使用。

方案2:

in android studio: tools->android->enable adb integration(this should be checked) uncheck this, then check again. this solved me this problem. (it restarts the adb integration)。

方案3:

如果项目引入了so库文件,将Project Structure的Build Type的jni debugger中设为true

方案4:

项目里有ndk由于默认是开启Debugger的Auto模式,那么Android Studio就同时开启了android的java调试以及ndk的native调试,这两个使用的端口是一样的,于是出现了端口占用,因此每次只能进行Java调试或者ndk调试,不能用Auto模式

Debug的Edit Configuration中有一个Debugger中有一个Build Type默认为Detect Automatically ,于是改成Java Only就可以成功调试了。

具体步骤Run->Edit Configuration->Debugger->Build Type设置为Java Only模式,则可以正常调试

 

你可能感兴趣的:(Android,Studio)