From 16f6cd4e7b0bf7ada7133d2d4fd73ecd10f907a5 Mon Sep 17 00:00:00 2001 From: Frizlab Date: Tue, 18 Jan 2022 15:29:41 +0100 Subject: [PATCH] Add an apple-app-site-association file --- Public/.well-known/apple-app-site-association | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Public/.well-known/apple-app-site-association diff --git a/Public/.well-known/apple-app-site-association b/Public/.well-known/apple-app-site-association new file mode 100644 index 00000000..b601b46f --- /dev/null +++ b/Public/.well-known/apple-app-site-association @@ -0,0 +1,27 @@ +{ + "applinks": { + "details": [ + { + "appIDs": [ + "M8JS42FSNG.com.happn.Office" + ], + "components": [ + { + "#": "no_universal_links", + "exclude": true, + "comment": "Matches any URL whose fragment equals no_universal_links and instructs the system not to open it as a universal link. This is a rule we find in Apple’s doc and I like it, so I’ve kept it. See doc for more examples: https://developer.apple.com/documentation/xcode/supporting-associated-domains." + }, + { + "/": "/api/*", + "exclude": true, + "comment": "Matches any URL whose path starts with /api/ and instructs the system not to open it as a universal link. We do not really need it, but why not 🤷‍♂️" + }, + { + "/": "/*", + "comment": "Matches any URL whose path starts with /. I’m not sure this is needed…" + } + ] + } + ] + } +}