This application does not have the debuggable attribute enabled in its manifest.

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.