Skip to content

Commit

Permalink
Update intent filters
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Jan 19, 2023
1 parent 0a56297 commit 0807091
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,24 @@
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
</intent-filter>
<intent-filter
android:scheme="http" tools:ignore="AppLinkUrlError">
<action android:name="android.intent.action.EDIT" />
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/svg+xml" />
</intent-filter>
<intent-filter
android:scheme="http" tools:ignore="AppLinkUrlError">
<action android:name="android.intent.action.EDIT" />
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/octet-stream" />
</intent-filter>
</activity>

<activity
Expand Down

0 comments on commit 0807091

Please sign in to comment.