Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(deep-links): clarify apple-app-site-association file #2963

Merged
merged 2 commits into from
May 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions site/docs-md/guides/deep-links.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ description: Implement deep linking functionality in an iOS and Android app
url: /docs/guides/deep-links
contributors:
- dotnetkow
- jaydrogers
---

# Deep Linking with Universal and App Links
Expand Down Expand Up @@ -157,14 +158,14 @@ Next, create the site association file (`apple-app-site-association`).

> Note: Despite being a JSON file, do not save it with a file extension.

An example of the `apple-app-site-association` file is below. Be sure to replace `TEAMID.BUNDLEID` with your own IDs (example: `8L65AZE66A.com.netkosoft.beerswift`).

```json
// apple-app-site-association
{
"applinks": {
"apps": [],
"details": [
{
// example: 8L65AZE66A.com.netkosoft.beerswift
"appID": "TEAMID.BUNDLEID",
"paths": ["*"]
}
Expand Down