add .xlsm mimetype to android
Signed-off-by: Mert Tumer <mert.tumer@collabora.com> Change-Id: I7b28870e3b1d3c4941e516871c2077e1d0695d09
This commit is contained in:
parent
962e1a9a5a
commit
1381812979
3 changed files with 3 additions and 0 deletions
|
@ -93,6 +93,7 @@
|
|||
<data android:mimeType="application/vnd.visio.xml" />
|
||||
<data android:mimeType="application/x-mspublisher" />
|
||||
<data android:mimeType="application/vnd.ms-excel.sheet.binary.macroenabled.12" />
|
||||
<data android:mimeType="application/vnd.ms-excel.sheet.macroenabled.12" />
|
||||
|
||||
<!-- OOXML -->
|
||||
<data android:mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
|
||||
|
|
|
@ -81,6 +81,7 @@ public class FileUtilities {
|
|||
// mExtnMap.put(".pps", IMPRESS);
|
||||
mExtnMap.put(".xls", CALC);
|
||||
mExtnMap.put(".xlsb", CALC);
|
||||
mExtnMap.put(".xlsm", CALC);
|
||||
|
||||
// MS templates
|
||||
mExtnMap.put(".dot", DOC);
|
||||
|
|
|
@ -743,6 +743,7 @@ public class LibreOfficeUIActivity extends AppCompatActivity implements Settings
|
|||
"application/vnd.visio.xml",
|
||||
"application/x-mspublisher",
|
||||
"application/vnd.ms-excel.sheet.binary.macroenabled.12",
|
||||
"application/vnd.ms-excel.sheet.macroenabled.12",
|
||||
|
||||
// OOXML
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
|
|
Loading…
Reference in a new issue