This application does not have the debuggable attribute enabled in its manifest.
遇到程序无法调试出这个问题,可以试试以下三个方法
1.在AndroidManifest.xml文件中搜索"debuggable", 如果debuggable属性存在且为false的话是不能调试的,将其改为true就好了。
2.在gradle中构建调试,例如以下代码
buildTypes {
debug {
applicationIdSuffix “.debug”
debuggable true
}
}
3.检查Build Variants中的你的module是否为debug
This application does not have the debuggable attribute enabled in its manifest.

相关文章:

  • 2022-12-23
  • 2021-05-22
  • 2021-10-25
  • 2021-04-18
  • 2021-10-04
  • 2021-11-17
猜你喜欢
  • 2022-01-27
  • 2022-12-23
  • 2021-08-10
  • 2022-12-23
  • 2021-10-02
  • 2021-08-11
  • 2021-10-08
相关资源
相似解决方案