We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f529cc4 commit 4986cc8Copy full SHA for 4986cc8
java/ql/lib/semmle/code/xml/AndroidManifest.qll
@@ -60,7 +60,13 @@ class AndroidApplicationXmlElement extends XMLElement {
60
/**
61
* Holds if this application element has the attribute `android:debuggable` set to `true`.
62
*/
63
- predicate isDebuggable() { this.getAttributeValue("debuggable") = "true" }
+ predicate isDebuggable() {
64
+ exists(AndroidXmlAttribute attr |
65
+ this.getAnAttribute() = attr and
66
+ attr.getName() = "debuggable" and
67
+ attr.getValue() = "true"
68
+ )
69
+ }
70
}
71
72
0 commit comments