-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathplugin.xml
More file actions
25 lines (19 loc) · 965 Bytes
/
plugin.xml
File metadata and controls
25 lines (19 loc) · 965 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="io.inventit.dev.mqtt-websocket-java"
version="1.0.1">
<name>mqtt-websocket-java</name>
<description>MQTT over WebScoket for Java with Paho and Jetty</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- ios -->
<!-- TBD -->
<!-- android -->
<platform name="android">
<source-file src="src/main/java/io/inventit/dev/mqtt/paho/MqttWebSocketAsyncClient.java" target-dir="src/io/inventit/dev/mqtt/paho/" />
<source-file src="src/main/java/io/inventit/dev/mqtt/paho/PahoConsoleLogger.java" target-dir="src/io/inventit/dev/mqtt/paho/" />
<source-file src="src/main/java/io/inventit/dev/mqtt/paho/WebSocketNetworkModule.java" target-dir="src/io/inventit/dev/mqtt/paho/" />
</platform>
</plugin>