-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathplugin.xml
More file actions
29 lines (23 loc) · 1.06 KB
/
Copy pathplugin.xml
File metadata and controls
29 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
27
28
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="in.girish.datagram"
version="0.1.0">
<name>UDP Plugin</name>
<description>UDP Plugin which supports node.js dgram API</description>
<license>MIT</license>
<keywords>UDP, Multicast, Datagram, dgram</keywords>
<!-- cordova defines the file below with define('<plugin-id>.<name>') -->
<js-module src="www/datagram.js" name="datagram">
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<!-- This is the name used for service name in cordova.exec -->
<feature name="Datagram" >
<!-- This tells cordova which java class to load for this plugin -->
<param name="android-package" value="in.girish.datagram.Datagram"/>
</feature>
</config-file>
<source-file src="src/android/Datagram.java" target-dir="src/in/girish/datagram/" />
</platform>
</plugin>