-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathplugin.xml
27 lines (21 loc) · 899 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
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.phonegap.plugins.fileopener"
version="1.0.0">
<name>File Opener</name>
<description>Cordova InAppBrowser Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,file</keywords>
<js-module src="www/fileopener.js" name="FileOpener">
<clobbers target="window.plugins.fileOpener" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="FileOpener">
<param name="android-package" value="com.phonegap.plugins.fileopener.FileOpener"/>
</feature>
</config-file>
<source-file src="src/android/FileOpener.java" target-dir="src/com/phonegap/plugins/fileopener" />
</platform>
</plugin>