forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplugin.xml
More file actions
30 lines (25 loc) · 1.14 KB
/
plugin.xml
File metadata and controls
30 lines (25 loc) · 1.14 KB
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://apache.org/cordova/ns/plugins/1.0"
xmlns:rim="http://www.blackberry.com/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-sftp" version="1.1.1">
<name>Sftp</name>
<description>Cordova Sftp Plugin</description>
<license>MIT</license>
<keywords>cordova,ftp</keywords>
<repo>https://github.com/foxdebug/cordova-plugin-sftp.git</repo>
<js-module src="www/sftp.js" name="sftp">
<clobbers target="window.sftp" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Sftp">
<param name="android-package" value="com.foxdebug.sftp.Sftp" />
</feature>
</config-file>
<source-file src="src/com/foxdebug/sftp/Sftp.java" target-dir="src/com/foxdebug/sftp" />
</platform>
<framework src="commons-io:commons-io:2.11.0" />
<framework src="com.sshtools:maverick-synergy-client:3.1.2" />
<framework src="com.sshtools:maverick-bc:3.1.2" />
</plugin>