Skip to content

Commit 6d5b6ff

Browse files
authored
Merge pull request #228 from keithics/patch-1
updated data element
2 parents fad4323 + 96c7bbe commit 6d5b6ff

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/deep-linking.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,15 @@ 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>
97101
<intent-filter>
98102
<action android:name="android.intent.action.VIEW" />
99103
<category android:name="android.intent.category.DEFAULT" />
100104
<category android:name="android.intent.category.BROWSABLE" />
101-
<data android:scheme="mychat" android:host="mychat" />
105+
<data android:scheme="mychat" android:host="mychat" />
102106
</intent-filter>
103107
```
104108

0 commit comments

Comments
 (0)