Could not connect to remote process. Aborting debug session.

过了个周末, AS就不能调试了, 终端会输出如题

搜索之, 得到两种解决方案

  1. 重启adb
  2. manifest文件中加入 android:debuggable = “true”

两种方案都是瞎搞

  • 要是重启adb有用那重启电脑也有用了, 本着遇事不决就任性重启这个思想深入人心的情况, 应该都会尝试重启电脑试试看的
  • 凭什么原来没有这个配置的时候跑的好好的, 要加这个呢. 加了还报警告呢

综上, 如果你试了上面两种方法都不行, 不妨试试我这个

在manifest中找找

<intent-filter>
     <action android:name="android.intent.action.MAIN" />
     <category android:name="android.intent.category.LAUNCHER" />
intent-filter>

看看对应的android:exported="true"是不是设置成false了, 原因是入口的activity没了, app启动不起来自然不能调试了

你可能感兴趣的:(Could not connect to remote process. Aborting debug session.)