forked from fastrde/cordova-plugin-fastrde-md5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
31 lines (31 loc) · 1.23 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
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="de.fastr.phonegap.plugins.md5chksum" version="0.1.3">
<name>MD5 Checksum</name>
<author>Fabian Strachanski</author>
<description>MD5 Checksum for Files on Android and iOS</description>
<license>MIT</license>
<keywords>file,md5,checksum,hash</keywords>
<repo>https://github.com/fastrde/phonegap-md5.git</repo>
<issue>https://github.com/fastrde/phonegap-md5/issues</issue>
<dependency id="cordova-plugin-file" version="3.0.0" />
<js-module src="www/md5chksum.js" name="md5chksum">
<clobbers target="md5chksum" />
</js-module>
<platform name="android">
<source-file src="src/android/md5chksum.java" target-dir="src/de/fastr/phonegap/plugins" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="md5chksum">
<param name="android-package" value="de.fastr.phonegap.plugins.md5chksum"/>
</feature>
</config-file>
</platform>
<platform name="ios">
<header-file src="src/ios/md5chksum.h" />
<source-file src="src/ios/md5chksum.m" />
<config-file target="config.xml" parent="/*">
<feature name="md5chksum">
<param name="ios-package" value="md5chksum" />
</feature>
</config-file>
</platform>
</plugin>