diff options
author | jan Iversen <jani@libreoffice.org> | 2018-01-26 15:46:20 +0100 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2018-01-26 15:47:22 +0100 |
commit | 2cbcaa58b9fdbe78119b43a2a4404bebbb3fcebd (patch) | |
tree | 0b393182251e6859fa1ee21004a9abc886bf8e61 /ios/LibreOfficeLight | |
parent | 17d7f2971061a9e0b68da6d433835c64b946169a (diff) |
iOS, add support for PDF
Updated Document Types and import types.
Change-Id: Id7e5aef91cdf52783a83672becfd7bbb78f986ad
Diffstat (limited to 'ios/LibreOfficeLight')
-rwxr-xr-x | ios/LibreOfficeLight/LibreOfficeLight/Info.plist | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ios/LibreOfficeLight/LibreOfficeLight/Info.plist b/ios/LibreOfficeLight/LibreOfficeLight/Info.plist index 8e26191c6a76..c50ff60567f3 100755 --- a/ios/LibreOfficeLight/LibreOfficeLight/Info.plist +++ b/ios/LibreOfficeLight/LibreOfficeLight/Info.plist @@ -349,6 +349,7 @@ <string>org.libreoffice.cdr-document</string> <string>org.libreoffice.visio-document</string> <string>org.libreoffice.mspub-document</string> + <string>com.adobe.pdf</string> </array> </dict> </array> @@ -1784,6 +1785,28 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.</string> </array> </dict> </dict> + <dict> + <key>UTTypeConformsTo</key> + <array> + <string>public.data</string> + <string>public.composite-content</string> + </array> + <key>UTTypeDescription</key> + <string>Apple PDF pasteboard type PDF data</string> + <key>UTTypeIdentifier</key> + <string>com.adobe.pdf</string> + <key>UTTypeTagSpecification</key> + <dict> + <key>public.filename-extension</key> + <array> + <string>pdf</string> + </array> + <key>public.mime-type</key> + <array> + <string>application/pdf</string> + </array> + </dict> + </dict> </array> </dict> </plist> |