获取 android 清单 <application> 可调试 属性 值

Get android manifest <application> debuggable property value

检查 android debuggable 属性 是否在清单中为真。

<application android:allowBackup="true" android:debuggable="true" >

如何以编程方式获取可调试的 属性 值?

你用这个检查 DEBUGGABLE 是真还是假

(getContext().getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0 

this.getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0