tdf#111427 android: Enable support for .ppsx
Opening the sample file of MIME type "application/vnd.openxmlformats-officedocument.presentationml.slideshow" attached to tdf#111427 worked fine now when testing in an x86_64 AVD with API level 31, so declare support for it. Change-Id: I67ace0fb6ee82c0a43624dc32671ba2d453e473c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133648 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
This commit is contained in:
parent
bd950c4bfd
commit
9652059311
3 changed files with 3 additions and 2 deletions
|
@ -70,7 +70,7 @@
|
|||
<!-- OOXML -->
|
||||
<data android:mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
|
||||
<data android:mimeType="application/vnd.openxmlformats-officedocument.presentationml.presentation" />
|
||||
<!-- Currently crashes. <data android:mimeType="application/vnd.openxmlformats-officedocument.presentationml.slideshow"/> -->
|
||||
<data android:mimeType="application/vnd.openxmlformats-officedocument.presentationml.slideshow" />
|
||||
<data android:mimeType="application/vnd.openxmlformats-officedocument.wordprocessingml.document" />
|
||||
|
||||
<!-- OOXML templates -->
|
||||
|
|
|
@ -74,7 +74,7 @@ public class FileUtilities {
|
|||
// OOXML
|
||||
mExtnMap.put(".docx", DOC);
|
||||
mExtnMap.put(".pptx", IMPRESS);
|
||||
// mExtnMap.put(".ppsx", IMPRESS);
|
||||
mExtnMap.put(".ppsx", IMPRESS);
|
||||
mExtnMap.put(".xlsx", CALC);
|
||||
|
||||
// OOXML templates
|
||||
|
|
|
@ -103,6 +103,7 @@ public class LibreOfficeUIActivity extends AppCompatActivity implements Settings
|
|||
"application/x-mspublisher",
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
"application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
||||
"application/vnd.openxmlformats-officedocument.presentationml.slideshow",
|
||||
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
||||
"application/vnd.openxmlformats-officedocument.wordprocessingml.template",
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.template",
|
||||
|
|
Loading…
Reference in a new issue