-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
35 lines (29 loc) · 1.38 KB
/
plugin.xml
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
<?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-plugin-diont"
version="0.9.11">
<name>Diont for Cordova</name>
<description>Easy Service Discovery on Local Networks</description>
<author>Willem Mulder</author>
<repo>https://github.com/willemmulder/Diont-for-Cordova</repo>
<license>ISC</license>
<keywords>udp, multicast, service, discovery, mdns, bonjour, diont, local, network, wifi</keywords>
<js-module src="www/diont.js" name="diont">
<clobbers target="Diont"/>
</js-module>
<dependency id="cordova-plugin-chrome-apps-system-network" url="https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-system-network" commit="master" />
<platform name="android">
<!-- inject <feature> tag into config.xml to register the plugin -->
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Diont">
<param name="android-package" value="net.willemmulder.diont.cordova.Diont"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
</config-file>
<source-file src="src/android/Diont.java" target-dir="src/net/willemmulder/diont/cordova/" />
</platform>
</plugin>