Skip to content

Commit d829f1d

Browse files
doc: add better fromatting to the app links section
1 parent 0546259 commit d829f1d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/docs/introduction.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,18 +260,17 @@ 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 add the following code to your `AndroidManifest.xml`:
264-
```xml
263+
If 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`:
265264
265+
```xml
266266
<activity
267267
android:name="net.openid.appauth.RedirectUriReceiverActivity"
268268
android:exported="true">
269269
<intent-filter android:autoVerify="true">
270270
<action android:name="android.intent.action.VIEW"/>
271271
<category android:name="android.intent.category.DEFAULT"/>
272272
<category android:name="android.intent.category.BROWSABLE"/>
273-
<data android:scheme="https"
274-
android:host=example.domain />
273+
<data android:scheme="https" android:host=example.domain />
275274
</intent-filter>
276275
</activity>
277276
```

0 commit comments

Comments
 (0)