Skip to content

Commit b3664ea

Browse files
authored
Correctly place autoVerify in VIEW intent-filter (#1400)
1 parent 7fc4ebc commit b3664ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

versioned_docs/version-7.x/deep-linking.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ After adding them, it should look like this:
192192
<activity
193193
android:name=".MainActivity"
194194
android:launchMode="singleTask">
195-
<intent-filter android:autoVerify="true">
195+
<intent-filter>
196196
<action android:name="android.intent.action.MAIN" />
197197
<category android:name="android.intent.category.LAUNCHER" />
198198
</intent-filter>
@@ -202,7 +202,7 @@ After adding them, it should look like this:
202202
<category android:name="android.intent.category.BROWSABLE" />
203203
<data android:scheme="mychat" />
204204
</intent-filter>
205-
<intent-filter>
205+
<intent-filter android:autoVerify="true">
206206
<action android:name="android.intent.action.VIEW" />
207207
<category android:name="android.intent.category.DEFAULT" />
208208
<category android:name="android.intent.category.BROWSABLE" />

0 commit comments

Comments
 (0)