-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
38 lines (33 loc) · 1.47 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
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-multipath-tcp" version="0.1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Multipath TCP</name>
<description>
Cordova plugin for connecting to an endpoint via cell network when connected to a WIFI network with limited/no connectivity.
</description>
<license>Apache 2.0</license>
<keywords>cordova,multipath,tcp</keywords>
<js-module src="www/multipathTCP.js" name="multipathTCP">
<clobbers target="multipathTCP" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="MultipathTCP">
<param name="ios-package" value="CDVMultipathTCP"/>
</feature>
</config-file>
<header-file src="src/ios/CDVMultipathTCP.h" />
<source-file src="src/ios/CDVMultipathTCP.m" />
</platform>
<platform name="android">
<source-file src="src/android/MultipathTCP.java" target-dir="src/com/rosepoint/" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="MultipathTCP">
<param name="android-package" value="com.rosepoint.MultipathTCP"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
</config-file>
</platform>
</plugin>