Could not connect to remote process. Aborting debug session.解决办法

Android Studio
点debug时,出现

Could not connect to remote process. Aborting debug session.

解决办法

在manifest文件中添加
android:debuggable标签

举个栗子:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

<application 
    android:debuggable="true"
    tools:ignore="HardcodedDebugMode">
</application>

还是不行请检查手机的驱动有没有安装,
手机线有没有插好。

再不行就重启电脑,哈哈哈

    原文作者:MaxZing
    原文地址: https://www.jianshu.com/p/ada2fc7088d7
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞