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 1a9dd48 commit cf3e5a0Copy full SHA for cf3e5a0
java/ql/lib/semmle/code/xml/AndroidManifest.qll
@@ -212,6 +212,13 @@ class AndroidPermissionXmlAttribute extends XmlAttribute {
212
predicate isWrite() { this.getName() = "writePermission" }
213
}
214
215
+/**
216
+ * The attribute `android:name` or `android:targetActivity`.
217
+ */
218
+class AndroidIdentifierXmlAttribute extends AndroidXmlAttribute {
219
+ AndroidIdentifierXmlAttribute() { this.getName() = ["name", "targetActivity"] }
220
+}
221
+
222
/**
223
* The `<path-permission`> element of a `<provider>` in an Android manifest file.
224
*/
0 commit comments