Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
Added some changes to be able to open local HTML files.
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammedSaleem-Brej committed Mar 16, 2024
1 parent a076331 commit 719f26e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions fenix/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />

<data android:scheme="content" />
<data android:scheme="file" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:mimeType="text/html" />
Expand Down Expand Up @@ -261,6 +263,15 @@
<data android:scheme="https" />
</intent-filter>

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/html" />
<data android:scheme="content" />
<data android:scheme="file" />
</intent-filter>

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
Expand Down

0 comments on commit 719f26e

Please sign in to comment.