From 399ec9fa8febd9b2436be1906cbb75af395af87e Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Fri, 29 Sep 2023 12:00:46 +0300 Subject: [PATCH] vector-im/element-x-ios/issues/1824 - Switch apple-app-site-associations to the new format, add a query param exclusion for ignoring universal links --- public/apple-app-site-association | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/public/apple-app-site-association b/public/apple-app-site-association index b27b5c714..d0ee479ac 100644 --- a/public/apple-app-site-association +++ b/public/apple-app-site-association @@ -1,6 +1,5 @@ { "applinks": { - "apps": [], "details": [ { "appIDs": [ @@ -8,7 +7,19 @@ "7J4U792NQT.io.element.elementx.nightly", "7J4U792NQT.io.element.elementx.pr" ], - "paths": ["*"] + "components": [ + { + "?": { + "no_universal_links": "*" + }, + "exclude": true, + "comment": "Opt out of universal links" + }, + { + "/": "/*", + "comment": "Matches any URL" + } + ] } ] }