Reading the docs on the <data>
element of android manifest, three different path specification rules are shown:
android:path
- corresponding to PATTERN_LITERAL of the PatternMatcher classandroid:pathPrefix
- corresponding to PATTERN_PREFIX of the PatternMatcher classandroid:pathPattern
- corresponding to PATTERN_SIMPLE_GLOB of the PatternMatcher class
But on the docs of the PatternMatcher class there is also a PATTERN_ADVANCED_GLOB, yet the manifest documentation does not seem to mention it anywhere. Is it possible to use PATTERN_ADVANCED_GLOB in the manifest file? What is the syntax?