Skip to content

Commit

Permalink
Update 'verifying Android App Links' link
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikgs committed Jan 24, 2024
1 parent c799fe5 commit ab6d6da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit ab6d6da

Please sign in to comment.