-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
30 lines (23 loc) · 1.01 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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.ourcodeworld.sftpplugin"
version="0.5.1">
<name>Our Code World SFTP Plugin</name>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/ourcodeworldsftp.js" target="js/ourcodeworldsftp.js"/>
<js-module src="www/ourcodeworldsftp.js" name="OurCodeWorldSFTP">
<clobbers target="OurCodeWorldSFTP" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="OurCodeWorldSFTP">
<param name="android-package" value="com.ourcodeworld.plugins.sftp.OurCodeWorldSFTP"/>
</feature>
</config-file>
<source-file src="src/android/OurCodeWorldSFTP.java" target-dir="src/com/ourcodeworld/plugin/"/>
<source-file src="src/android/progressMonitor.java" target-dir="src/com/ourcodeworld/plugin/"/>
<source-file src="src/android/libs/jsch-0.1.53.jar" target-dir="libs" />
</platform>
</plugin>