forked from markvandenbergh/phonegap-plugin-ios-quick-look
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·28 lines (25 loc) · 876 Bytes
/
Copy pathplugin.xml
File metadata and controls
executable file
·28 lines (25 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.tinymid.phonegap.QuickLookPlugin.js"
version="0">
<author>zhaoqiang wang</author>
<description>
This plugin allows your application to open file using QuickLook Lib on iOS
</description>
<license>MIT</license>
<name>QuickLookPlugin.js</name>
<asset src="QuickLookPlugin.js" target="QuickLookPlugin.js" />
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="QuickLookPlugin">
<param name="ios-package" value="CDVQuickLookPlugin"/>
</feature>
</config-file>
<source-file src="CDVQuickLookPlugin.m" />
<header-file src="CDVQuickLookPlugin.h" />
</platform>
</plugin>