-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·31 lines (27 loc) · 1.06 KB
/
plugin.xml
File metadata and controls
executable file
·31 lines (27 loc) · 1.06 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
31
<?xml version="1.0" encoding="UTF-8"?>
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="mobi.monaca.plugins.WebSocketServer"
version="1.0.0">
<name>WebSocketServer</name>
<description>
Use this pliugin to create different channels over one HTTP connection
</description>
<engines>
<engine name="cordova" version=">=2.9.0" />
</engines>
<license>Asial</license>
<js-module src="www/webSocketServer.js" name="WebSocketServer">
<clobbers target="plugins.webSocketServer" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="WebSocketServer">
<param name="android-package" value="mobi.monaca.framework.plugin.WebSocketPlugin"/>
</feature>
</config-file>
<source-file src="src/android/libs/java_websocket.jar" target-dir="libs/" />
<source-file src="src/android/WebSocketPlugin.java" target-dir="src/mobi/monaca/framework/plugin"/>
</platform>
</plugin>