Skip to content

Commit 0546259

Browse files
docs: update new documentation about app links with suggested changes
1 parent 55e48d4 commit 0546259

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

docs/docs/introduction.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -260,23 +260,23 @@ NOTE: When integrating with [React Navigation deep linking](https://reactnavigat
260260
261261
#### App Links
262262
263-
If your your OAuth Redirect URL is an [App Links](https://developer.android.com/training/app-links), you need to the following code to your `AndroidManifest.xml`:
263+
If your your OAuth Redirect URL is an [App Links](https://developer.android.com/training/app-links), you need to add the following code to your `AndroidManifest.xml`:
264+
```xml
264265
265-
```
266266
<activity
267-
android:name="net.openid.appauth.RedirectUriReceiverActivity"
268-
android:exported="true">
269-
<intent-filter android:autoVerify="true">
270-
<action android:name="android.intent.action.VIEW"/>
271-
<category android:name="android.intent.category.DEFAULT"/>
272-
<category android:name="android.intent.category.BROWSABLE"/>
273-
<data android:scheme="https"
274-
android:host=example.domain />
275-
</intent-filter>
276-
</activity>
267+
android:name="net.openid.appauth.RedirectUriReceiverActivity"
268+
android:exported="true">
269+
<intent-filter android:autoVerify="true">
270+
<action android:name="android.intent.action.VIEW"/>
271+
<category android:name="android.intent.category.DEFAULT"/>
272+
<category android:name="android.intent.category.BROWSABLE"/>
273+
<data android:scheme="https"
274+
android:host=example.domain />
275+
</intent-filter>
276+
</activity>
277277
```
278278
279-
where the `host` is the domain of your redirect uri.
279+
Replace `android:host` with the domain of your redirect uri.
280280
281281
You need to add the `manifestPlaceholders` as described in the section above:
282282

0 commit comments

Comments
 (0)