Skip to content

Commit f1de87e

Browse files
committed
add Intent filter to Browser activity for MIME type: "text/html"
1 parent 253c487 commit f1de87e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

android-studio-project/WebCast/src/main/AndroidManifest.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@
4545
<data android:scheme="http" />
4646
<data android:scheme="https" />
4747
</intent-filter>
48+
<intent-filter>
49+
<action android:name="android.intent.action.VIEW" />
50+
<category android:name="android.intent.category.DEFAULT" />
51+
<category android:name="android.intent.category.BROWSABLE" />
52+
<data android:scheme="http" />
53+
<data android:scheme="https" />
54+
<data android:mimeType="text/html" />
55+
</intent-filter>
4856
</activity>
4957

5058
<activity

0 commit comments

Comments
 (0)