2013-05-16 06:14:00 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-04-17 04:20:06 +08:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
-->
|
2013-05-16 06:14:00 +08:00
|
|
|
|
2013-07-25 05:48:06 +08:00
|
|
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
2013-07-31 08:01:07 +08:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-09-21 18:36:19 +08:00
|
|
|
id="org.apache.cordova.network-information"
|
2014-06-06 04:40:50 +08:00
|
|
|
version="0.2.10-dev">
|
2013-05-16 06:14:00 +08:00
|
|
|
|
|
|
|
<name>Network Information</name>
|
2013-07-31 06:32:29 +08:00
|
|
|
<description>Cordova Network Information Plugin</description>
|
2013-08-07 05:52:52 +08:00
|
|
|
<license>Apache 2.0</license>
|
2013-07-31 06:32:29 +08:00
|
|
|
<keywords>cordova,network,information</keywords>
|
2013-10-23 04:59:42 +08:00
|
|
|
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git</repo>
|
|
|
|
<issue>https://issues.apache.org/jira/browse/CB/component/12320640</issue>
|
2013-11-28 16:44:14 +08:00
|
|
|
|
2013-05-16 06:14:00 +08:00
|
|
|
<js-module src="www/network.js" name="network">
|
2013-05-21 03:58:20 +08:00
|
|
|
<clobbers target="navigator.connection" />
|
2013-06-18 04:17:59 +08:00
|
|
|
<clobbers target="navigator.network.connection" />
|
|
|
|
</js-module>
|
|
|
|
|
|
|
|
<js-module src="www/Connection.js" name="Connection">
|
|
|
|
<clobbers target="Connection" />
|
2013-05-16 06:14:00 +08:00
|
|
|
</js-module>
|
2013-11-28 16:44:14 +08:00
|
|
|
|
|
|
|
<!-- firefoxos -->
|
2013-07-31 07:09:21 +08:00
|
|
|
<platform name="firefoxos">
|
2013-09-18 06:39:55 +08:00
|
|
|
<js-module src="src/firefoxos/NetworkProxy.js" name="NetworkProxy">
|
|
|
|
<runs />
|
|
|
|
</js-module>
|
2013-07-31 07:09:21 +08:00
|
|
|
</platform>
|
2013-11-28 16:44:14 +08:00
|
|
|
|
2013-05-16 06:14:00 +08:00
|
|
|
<!-- android -->
|
|
|
|
<platform name="android">
|
2013-05-21 02:26:05 +08:00
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
|
|
<feature name="NetworkStatus">
|
2013-08-01 07:57:24 +08:00
|
|
|
<param name="android-package" value="org.apache.cordova.networkinformation.NetworkManager"/>
|
2013-11-28 16:44:14 +08:00
|
|
|
</feature>
|
2013-05-16 06:14:00 +08:00
|
|
|
</config-file>
|
2013-11-28 16:44:14 +08:00
|
|
|
|
2013-06-12 02:40:19 +08:00
|
|
|
<config-file target="AndroidManifest.xml" parent="/*">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
</config-file>
|
2013-05-21 02:26:05 +08:00
|
|
|
|
2013-08-01 07:57:24 +08:00
|
|
|
<source-file src="src/android/NetworkManager.java" target-dir="src/org/apache/cordova/networkinformation" />
|
2013-11-28 16:44:14 +08:00
|
|
|
|
2013-05-16 06:14:00 +08:00
|
|
|
</platform>
|
|
|
|
|
2013-10-19 06:21:15 +08:00
|
|
|
<!-- amazon-fireos -->
|
|
|
|
<platform name="amazon-fireos">
|
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
|
|
<feature name="NetworkStatus">
|
|
|
|
<param name="android-package" value="org.apache.cordova.networkinformation.NetworkManager"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<config-file target="AndroidManifest.xml" parent="/*">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<source-file src="src/android/NetworkManager.java" target-dir="src/org/apache/cordova/networkinformation" />
|
|
|
|
|
|
|
|
</platform>
|
|
|
|
|
|
|
|
|
2013-09-22 12:40:51 +08:00
|
|
|
<!-- ubuntu -->
|
|
|
|
<platform name="ubuntu">
|
2013-11-11 21:59:04 +08:00
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="Camera">
|
|
|
|
<param policy_group="connectivity" policy_version="1" />
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
2013-09-22 12:40:51 +08:00
|
|
|
<header-file src="src/ubuntu/network_information.h" />
|
|
|
|
<source-file src="src/ubuntu/network_information.cpp" />
|
|
|
|
</platform>
|
|
|
|
|
2013-05-16 06:14:00 +08:00
|
|
|
<!-- ios -->
|
2013-11-28 16:44:14 +08:00
|
|
|
<platform name="ios">
|
2013-05-21 02:26:05 +08:00
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="NetworkStatus">
|
2013-11-28 16:44:14 +08:00
|
|
|
<param name="ios-package" value="CDVConnection" />
|
2013-05-21 02:26:05 +08:00
|
|
|
</feature>
|
2013-05-16 06:14:00 +08:00
|
|
|
</config-file>
|
2013-11-28 16:44:14 +08:00
|
|
|
|
2013-05-16 06:14:00 +08:00
|
|
|
<header-file src="src/ios/CDVConnection.h" />
|
2013-05-21 02:26:05 +08:00
|
|
|
<source-file src="src/ios/CDVConnection.m" />
|
|
|
|
<header-file src="src/ios/CDVReachability.h" />
|
|
|
|
<source-file src="src/ios/CDVReachability.m" />
|
2013-07-24 06:10:59 +08:00
|
|
|
<framework src="SystemConfiguration.framework" weak="true" />
|
2013-05-16 06:14:00 +08:00
|
|
|
</platform>
|
2013-06-14 05:46:45 +08:00
|
|
|
|
2013-07-17 05:11:58 +08:00
|
|
|
<!-- blackberry10 -->
|
|
|
|
<platform name="blackberry10">
|
|
|
|
<source-file src="src/blackberry10/index.js" target-dir="NetworkStatus" />
|
|
|
|
<config-file target="www/config.xml" parent="/widget">
|
|
|
|
<feature name="NetworkStatus" value="NetworkStatus"/>
|
|
|
|
</config-file>
|
|
|
|
</platform>
|
|
|
|
|
2013-06-14 05:46:45 +08:00
|
|
|
<!-- wp7 -->
|
|
|
|
<platform name="wp7">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="NetworkStatus">
|
2013-06-15 07:37:49 +08:00
|
|
|
<param name="wp-package" value="NetworkStatus"/>
|
2013-06-14 05:46:45 +08:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
2013-06-15 07:37:49 +08:00
|
|
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
|
|
|
<Capability Name="ID_CAP_NETWORKING" />
|
|
|
|
</config-file>
|
|
|
|
|
2013-07-09 07:03:14 +08:00
|
|
|
<source-file src="src/wp/NetworkStatus.cs" />
|
2013-06-14 05:46:45 +08:00
|
|
|
</platform>
|
|
|
|
|
2013-06-25 06:58:28 +08:00
|
|
|
<!-- wp8 -->
|
|
|
|
<platform name="wp8">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="NetworkStatus">
|
|
|
|
<param name="wp-package" value="NetworkStatus"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
|
|
|
<Capability Name="ID_CAP_NETWORKING" />
|
|
|
|
</config-file>
|
|
|
|
|
2013-07-09 07:03:14 +08:00
|
|
|
<source-file src="src/wp/NetworkStatus.cs" />
|
2013-06-25 06:58:28 +08:00
|
|
|
</platform>
|
|
|
|
|
2013-07-30 09:11:18 +08:00
|
|
|
<!-- windows8 -->
|
|
|
|
<platform name="windows8">
|
|
|
|
<js-module src="src/windows8/NetworkInfoProxy.js" name="NetworkInfoProxy">
|
|
|
|
<merges target="" />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
|
|
|
|
2013-11-28 16:44:14 +08:00
|
|
|
<!-- tizen -->
|
|
|
|
<platform name="tizen">
|
|
|
|
<js-module src="src/tizen/NetworkProxy.js" name="NetworkProxy">
|
|
|
|
<runs />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
2013-05-16 06:14:00 +08:00
|
|
|
</plugin>
|