-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
28 lines (27 loc) · 1.34 KB
/
plugin.xml
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 id="cordova-plugin-eszip" version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>ESzip</name>
<description>Cordova plugin to zip folders on android devices</description>
<author>Sayed Ahad Abbas (@eternalsayed)</author>
<license>MIT</license>
<keywords>cordova,zip,compress</keywords>
<repo>https://github.com/eternalsayed/es-zip.git</repo>
<issue>https://github.com/eternalsayed/es-zip/issues</issue>
<js-module name="ESzip" src="www/ESzip.js">
<clobbers target="ESzip"/>
</js-module>
<dependency id="cordova-plugin-file" />
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="ESzip">
<param name="android-package" value="org.apache.cordova.plugin.ESzip"/>
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</config-file>
<source-file src="src/android/ESzip.java" target-dir="src/org/apache/cordova/plugin"/>
<source-file src="src/android/ZipHelper.java" target-dir="src/org/apache/cordova/plugin"/>
</platform>
</plugin>