1
0
Fork 0

Closes #319: Add intent filters for more mimetypes

master
Jonathan Almeida 2019-01-30 17:46:05 -05:00 committed by Colin Lee
parent 8368f4fbb2
commit 653cbf8987
1 changed files with 7 additions and 2 deletions

View File

@ -34,9 +34,14 @@
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<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/plain" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:mimeType="text/html"/>
<data android:mimeType="text/plain"/>
<data android:mimeType="application/xhtml+xml"/>
</intent-filter>
</activity>