Add remote source of Android intent extra

This commit is contained in:
luchua-bc
2020-06-25 20:20:18 +00:00
committed by Chris Smowton
parent 08bf464437
commit f5ca459795
3 changed files with 60 additions and 0 deletions

View File

@@ -137,6 +137,11 @@ class AndroidComponentXmlElement extends XMLElement {
* Holds if the `android:exported` attribute of this component element is `true`.
*/
predicate isExported() { getExportedAttributeValue() = "true" }
/**
* Holds if the `android:exported` attribute of this component element is explicitly set to `false`.
*/
predicate isNotExported() { getExportedAttributeValue() = "false" }
}
/**