Skip to content

Commit 96c7bbe

Browse files
authored
removed extra indents
1 parent 5f89c63 commit 96c7bbe

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/deep-linking.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,16 @@ To configure the external linking in Android, you can create a new intent in the
9494
In `SimpleApp/android/app/src/main/AndroidManifest.xml`, add the new `intent-filter` inside the `MainActivity` entry with a `VIEW` type action:
9595

9696
```
97-
<intent-filter>
98-
<action android:name="android.intent.action.MAIN" />
99-
<category android:name="android.intent.category.LAUNCHER" />
100-
</intent-filter>
101-
<intent-filter>
102-
<action android:name="android.intent.action.VIEW" />
103-
<category android:name="android.intent.category.DEFAULT" />
104-
<category android:name="android.intent.category.BROWSABLE" />
105-
<data android:scheme="mychat" android:host="mychat" />
106-
</intent-filter>
97+
<intent-filter>
98+
<action android:name="android.intent.action.MAIN" />
99+
<category android:name="android.intent.category.LAUNCHER" />
100+
</intent-filter>
101+
<intent-filter>
102+
<action android:name="android.intent.action.VIEW" />
103+
<category android:name="android.intent.category.DEFAULT" />
104+
<category android:name="android.intent.category.BROWSABLE" />
105+
<data android:scheme="mychat" android:host="mychat" />
106+
</intent-filter>
107107
```
108108

109109
Now, re-install the app:

0 commit comments

Comments
 (0)