-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·32 lines (28 loc) · 1.21 KB
/
plugin.xml
File metadata and controls
executable file
·32 lines (28 loc) · 1.21 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
32
<?xml version="1.0" encoding="UTF-8"?>
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="mobi.monaca.plugins.HttpServer"
version="1.0.0">
<name>HttpServer</name>
<description>
HTTP Server plugin for establishing HTTP connection
</description>
<engines>
<engine name="cordova" version=">=2.9.0" />
</engines>
<license>Asial</license>
<js-module src="www/httpServer.js" name="HttpServer">
<clobbers target="plugins.httpServer" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="HttpServer">
<param name="android-package" value="mobi.monaca.framework.plugin.HttpServerPlugin"/>
</feature>
</config-file>
<source-file src="src/android/HttpServerPlugin.java" target-dir="src/mobi/monaca/framework/plugin" />
<source-file src="src/android/MonacaLocalServer.java" target-dir="src/mobi/monaca/framework/plugin" />
<source-file src="src/android/NanoHTTPD.java" target-dir="src/fi/iki/elonen" />
<source-file src="src/android/SimpleWebServer.java" target-dir="src/fi/iki/elonen" />
</platform>
</plugin>