Closes #1054: Separate SEND intent from VIEW

This commit is contained in:
Jonathan Almeida 2019-03-18 12:59:25 -04:00 committed by Colin Lee
parent 0ac3e5369d
commit fb8c82b1bd
1 changed files with 6 additions and 1 deletions

View File

@ -52,7 +52,6 @@
</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" />
@ -63,6 +62,12 @@
<data android:mimeType="application/xhtml+xml"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.ASSIST" />
<category android:name="android.intent.category.DEFAULT" />