-
Notifications
You must be signed in to change notification settings - Fork 51
/
plugin.xml
77 lines (62 loc) · 2.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?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-networkinterface"
version="2.0.0">
<name>NetworkInterface</name>
<description>
This plugin allows your application to retrieve the local wifi address and proxy information.
</description>
<license>MIT</license>
<keywords>local,ip,wifi,network,proxy</keywords>
<engines>
<engine name="cordova" version=">=3.1.0" />
</engines>
<js-module src="www/networkinterface.js" name="networkinterface">
<clobbers target="window.networkinterface" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="networkinterface">
<param name="ios-package" value="CDVNetworkInterface" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/CDVNetworkInterface.h" />
<source-file src="src/ios/CDVNetworkInterface.m" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="networkinterface">
<param name="android-package" value="com.albahra.plugin.networkinterface.networkinterface"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
</config-file>
<source-file src="src/android/networkinterface.java" target-dir="src/com/albahra/plugin/networkinterface" />
</platform>
<!-- windows -->
<platform name="windows">
<config-file target="config.xml" parent="/*">
<feature name="networkinterface">
<param name="windows-package" value="networkinterface"/>
</feature>
</config-file>
<js-module src="src/windows/networkinterfaceProxy.js" name="networkinterfaceProxy">
<runs />
</js-module>
</platform>
<!-- browser -->
<platform name="browser">
<config-file target="config.xml" parent="/*">
<feature name="networkinterface">
<param name="browser-package" value="networkinterface" />
</feature>
</config-file>
<js-module src="src/browser/networkinterfaceProxy.js" name="networkinterfaceProxy">
<runs />
</js-module>
</platform>
</plugin>