https://developer.apple.com/videos/play/wwdc2019/717/ ``` You'll notice that I specify a question mark and an asterisk as the pattern from the query items value. A pattern consisting of a single asterisk matches any string, including the empty string. And a missing query item has a value equivalent to the empty string. So to match against the string that's at least one character long, I specify a question mark and then any additional characters are matched by the asterisk. ```
27 lines
539 B
Plaintext
27 lines
539 B
Plaintext
{
|
|
"applinks": {
|
|
"details": [
|
|
{
|
|
"appIDs": [
|
|
"7J4U792NQT.io.element.elementx",
|
|
"7J4U792NQT.io.element.elementx.nightly",
|
|
"7J4U792NQT.io.element.elementx.pr"
|
|
],
|
|
"components": [
|
|
{
|
|
"?": {
|
|
"no_universal_links": "?*"
|
|
},
|
|
"exclude": true,
|
|
"comment": "Opt out of universal links"
|
|
},
|
|
{
|
|
"/": "/*",
|
|
"comment": "Matches any URL"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|