forked from andischerer/cordova-plugin-dgram
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathplugin.xml
38 lines (34 loc) · 1.44 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
35
36
37
38
<?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="cordova-plugin-dgram"
version="0.1.5">
<name>UDP Plugin</name>
<description>Cordova-Plugin which supports node.js dgram API</description>
<keywords>UDP, Multicast, Datagram, dgram</keywords>
<license>MIT</license>
<repo>https://github.com/andischerer/cordova-plugin-dgram.git</repo>
<issue>https://github.com/andischerer/cordova-plugin-dgram/issues</issue>
<js-module src="www/dgram.js" name="dgram">
<clobbers target="dgram" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Dgram" >
<param name="android-package" value="org.apache.cordova.dgram.Dgram"/>
</feature>
</config-file>
<source-file src="src/android/Dgram.java" target-dir="src/org/apache/cordova/dgram/" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Dgram">
<param name="ios-package" value="Dgram" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/Dgram.h" />
<source-file src="src/ios/Dgram.m" />
<header-file src="src/ios/GCDAsyncUdpSocket.h" />
<source-file src="src/ios/GCDAsyncUdpSocket.m" />
</platform>
</plugin>