Skip to content

Update 'verifying Android App Links' link #1300

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

Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions versioned_docs/version-6.x/deep-linking.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ If you want to add it manually, open up `SimpleApp/android/app/src/main/AndroidM
</activity>
```

Similar to Universal Links on iOS, you can also use a domain to associate the app with your website on Android by [verifying Android App Links](https://developer.android.com/training/app-links/verify-site-associations). First, you need to configure your `AndroidManifest.xml`:
Similar to Universal Links on iOS, you can also use a domain to associate the app with your website on Android by [verifying Android App Links](https://developer.android.com/training/app-links/verify-android-applinks). First, you need to configure your `AndroidManifest.xml`:

1. Add `android:autoVerify="true"` to your `<intent-filter>` entry.
2. Add your domain's `scheme` and `host` in a new `<data>` entry inside the `<intent-filter>`.
Expand Down Expand Up @@ -185,7 +185,7 @@ After adding them, it should look like this:
</activity>
```

Then, you need to [declare the association](https://developer.android.com/training/app-links/verify-site-associations#web-assoc) between your website and your intent filters by hosting a Digital Asset Links JSON file.
Then, you need to [declare the association](https://developer.android.com/training/app-links/verify-android-applinks#web-assoc) between your website and your intent filters by hosting a Digital Asset Links JSON file.

## Testing deep links

Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-7.x/deep-linking.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ If you want to add it manually, open up `SimpleApp/android/app/src/main/AndroidM
</activity>
```

Similar to Universal Links on iOS, you can also use a domain to associate the app with your website on Android by [verifying Android App Links](https://developer.android.com/training/app-links/verify-site-associations). First, you need to configure your `AndroidManifest.xml`:
Similar to Universal Links on iOS, you can also use a domain to associate the app with your website on Android by [verifying Android App Links](https://developer.android.com/training/app-links/verify-android-applinks). First, you need to configure your `AndroidManifest.xml`:

1. Add `android:autoVerify="true"` to your `<intent-filter>` entry.
2. Add your domain's `scheme` and `host` in a new `<data>` entry inside the `<intent-filter>`.
Expand Down Expand Up @@ -185,7 +185,7 @@ After adding them, it should look like this:
</activity>
```

Then, you need to [declare the association](https://developer.android.com/training/app-links/verify-site-associations#web-assoc) between your website and your intent filters by hosting a Digital Asset Links JSON file.
Then, you need to [declare the association](https://developer.android.com/training/app-links/verify-android-applinks#web-assoc) between your website and your intent filters by hosting a Digital Asset Links JSON file.

## Testing deep links

Expand Down