-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an apple-app-site-association file
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 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 |
---|---|---|
@@ -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…" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |