diff options
author | Matt Holgate <matt@emobix.co.uk> | 2014-07-02 18:16:59 +0100 |
---|---|---|
committer | Matt Holgate <matt@emobix.co.uk> | 2014-07-02 18:16:59 +0100 |
commit | e07e988bd9ba2db63924cdc98eee3a6e6eb38873 (patch) | |
tree | fc0bb20412bcf7024baea53056691fd5206562c6 /platform/android/AndroidManifest.xml | |
parent | fe01358a4e3cf8e8c1d625937f89ddb9c1a7d8dc (diff) | |
download | mupdf-e07e988bd9ba2db63924cdc98eee3a6e6eb38873.tar.xz |
Handle the application/xps mimetype.
I think this is non-standard, but some applications seem to use it.
The email app on Android uses it, despite the fact the original email
actually embedded it as application/octet-stream. I guess the email app
is looking at the filename.
Diffstat (limited to 'platform/android/AndroidManifest.xml')
-rw-r--r-- | platform/android/AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/android/AndroidManifest.xml b/platform/android/AndroidManifest.xml index 91875e87..1e07779e 100644 --- a/platform/android/AndroidManifest.xml +++ b/platform/android/AndroidManifest.xml @@ -33,6 +33,7 @@ <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <data android:mimeType="application/vnd.ms-xpsdocument"/> + <data android:mimeType="application/xps"/> </intent-filter> <intent-filter> <action android:name="android.intent.action.VIEW"/> |