-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
element-hq/element-x-ios/issues/1824 - Convert the apple-app-site-ass…
…ociation file to a newer format and introduce an option to opt out of universal links; reformat json.
- Loading branch information
1 parent
73c7706
commit 2cde28e
Showing
1 changed file
with
32 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,35 @@ | ||
{ | ||
"applinks": { | ||
"apps": [], | ||
"details": [ | ||
{ | ||
"appIDs":[ | ||
"7J4U792NQT.im.vector.app", | ||
"7J4U792NQT.io.element.elementx", | ||
"7J4U792NQT.io.element.elementx.nightly", | ||
"7J4U792NQT.io.element.elementx.pr" | ||
], | ||
"paths": [ | ||
"*" | ||
] | ||
} | ||
"applinks": { | ||
"details": [ | ||
{ | ||
"appIDs": [ | ||
"7J4U792NQT.im.vector.app", | ||
"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" | ||
} | ||
] | ||
}, | ||
"webcredentials": { | ||
"apps": [ | ||
"7J4U792NQT.im.vector.app", | ||
"7J4U792NQT.io.element.elementx", | ||
"7J4U792NQT.io.element.elementx.nightly", | ||
"7J4U792NQT.io.element.elementx.pr" | ||
] | ||
} | ||
} | ||
] | ||
}, | ||
"webcredentials": { | ||
"apps": [ | ||
"7J4U792NQT.im.vector.app", | ||
"7J4U792NQT.io.element.elementx", | ||
"7J4U792NQT.io.element.elementx.nightly", | ||
"7J4U792NQT.io.element.elementx.pr" | ||
] | ||
} | ||
} |