-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathplugin.xml
More file actions
42 lines (34 loc) · 1.52 KB
/
plugin.xml
File metadata and controls
42 lines (34 loc) · 1.52 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
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-zeroconf-plugin"
version="1.2.3">
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>ZeroConf</name>
<description>ZeroConf plugin for Cordova/Phonegap</description>
<author>Vlad Stirbu</author>
<keywords>zeroconf</keywords>
<license>MIT</license>
<js-module src="www/ZeroConf.js" name="zeroconf">
<clobbers target="ZeroConf" />
</js-module>
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
</config-file>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ZeroConf">
<param name="android-package" value="com.triggertrap.ZeroConf" />
<param name="onload" value="true" />
</feature>
</config-file>
<framework src="javax.jmdns:jmdns:+"/>
<source-file src="src/android/ZeroConf.java" target-dir="src/com/triggertrap" />
<source-file src="src/android/libs/org.apache.http.legacy.jar" target-dir="libs" framework="true" />
</platform>
<info></info>
</plugin>