-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
24 lines (22 loc) · 998 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="org.apache.cordova.filehasher" version="1.0.0">
<name>FileHasher</name>
<description>Cordova FileHasher Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,filehasher</keywords>
<js-module src="www/filehasher.js" name="FileHasher">
<clobbers target="window.FileHasher" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="FileHasher">
<param name="android-package" value="com.redhatmobile.cordova.plugins.filehasher.FileHasher"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</config-file>
<source-file src="src/android/FileHasher.java" target-dir="src/com/redhatmobile/cordova/plugins/filehasher" />
</platform>
</plugin>