forked from aalonso777777/Acode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (23 loc) · 1.06 KB
/
Copy pathplugin.xml
File metadata and controls
26 lines (23 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
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-server" version="1.1.1">
<engines>
<engine name="cordova" version=">=6.5.0" />
</engines>
<name>Webserver for Cordova Apps</name>
<keywords>HTTP server, webserver</keywords>
<js-module src="www/server.js" name="CreateServer">
<clobbers target="window.CreateServer" />
</js-module>
<platform name="android">
<framework src="org.nanohttpd:nanohttpd:+" />
<framework src="androidx.documentfile:documentfile:1.0.1" />
<source-file src="src/android/com/foxdebug/server/Server.java" target-dir="src/com/foxdebug/server"/>
<source-file src="src/android/com/foxdebug/server/NanoHTTPDWebserver.java" target-dir="src/com/foxdebug/server"/>
<config-file target="config.xml" parent="/*">
<feature name="Server">
<param name="android-package" value="com.foxdebug.server.Server"/>
</feature>
</config-file>
</platform>
</plugin>