2013-05-15 15:14:00 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-04-16 16:20:06 -04: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-15 15:14:00 -07:00
|
|
|
|
2013-07-24 14:48:06 -07:00
|
|
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
2013-07-30 17:01:07 -07:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-09-21 12:36:19 +02:00
|
|
|
id="org.apache.cordova.network-information"
|
2014-06-05 13:40:50 -07:00
|
|
|
version="0.2.10-dev">
|
2013-05-15 15:14:00 -07:00
|
|
|
|
|
|
|
<name>Network Information</name>
|
2013-07-30 15:32:29 -07:00
|
|
|
<description>Cordova Network Information Plugin</description>
|
2013-08-06 14:52:52 -07:00
|
|
|
<license>Apache 2.0</license>
|
2013-07-30 15:32:29 -07:00
|
|
|
<keywords>cordova,network,information</keywords>
|
2013-10-22 13:59:42 -07: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 10:44:14 +02:00
|
|
|
|
2013-05-15 15:14:00 -07:00
|
|
|
<js-module src="www/network.js" name="network">
|
2013-05-20 12:58:20 -07:00
|
|
|
<clobbers target="navigator.connection" />
|
2013-06-17 13:17:59 -07:00
|
|
|
<clobbers target="navigator.network.connection" />
|
|
|
|
</js-module>
|
|
|
|
|
|
|
|
<js-module src="www/Connection.js" name="Connection">
|
|
|
|
<clobbers target="Connection" />
|
2013-05-15 15:14:00 -07:00
|
|
|
</js-module>
|
2013-11-28 10:44:14 +02:00
|
|
|
|
|
|
|
<!-- firefoxos -->
|
2013-07-30 16:09:21 -07:00
|
|
|
<platform name="firefoxos">
|
2013-09-17 15:39:55 -07:00
|
|
|
<js-module src="src/firefoxos/NetworkProxy.js" name="NetworkProxy">
|
|
|
|
<runs />
|
|
|
|
</js-module>
|
2013-07-30 16:09:21 -07:00
|
|
|
</platform>
|
2013-11-28 10:44:14 +02:00
|
|
|
|
2013-05-15 15:14:00 -07:00
|
|
|
<!-- android -->
|
|
|
|
<platform name="android">
|
2013-05-20 11:26:05 -07:00
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
|
|
<feature name="NetworkStatus">
|
2013-07-31 19:57:24 -04:00
|
|
|
<param name="android-package" value="org.apache.cordova.networkinformation.NetworkManager"/>
|
2013-11-28 10:44:14 +02:00
|
|
|
</feature>
|
2013-05-15 15:14:00 -07:00
|
|
|
</config-file>
|
2013-11-28 10:44:14 +02:00
|
|
|
|
2013-06-11 11:40:19 -07:00
|
|
|
<config-file target="AndroidManifest.xml" parent="/*">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
</config-file>
|
2013-05-20 11:26:05 -07:00
|
|
|
|
2013-07-31 19:57:24 -04:00
|
|
|
<source-file src="src/android/NetworkManager.java" target-dir="src/org/apache/cordova/networkinformation" />
|
2013-11-28 10:44:14 +02:00
|
|
|
|
2013-05-15 15:14:00 -07:00
|
|
|
</platform>
|
|
|
|
|
2013-10-18 15:21:15 -07: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 08:40:51 +04:00
|
|
|
<!-- ubuntu -->
|
|
|
|
<platform name="ubuntu">
|
2013-11-11 17:59:04 +04:00
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="Camera">
|
|
|
|
<param policy_group="connectivity" policy_version="1" />
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
2013-09-22 08:40:51 +04:00
|
|
|
<header-file src="src/ubuntu/network_information.h" />
|
|
|
|
<source-file src="src/ubuntu/network_information.cpp" />
|
|
|
|
</platform>
|
|
|
|
|
2013-05-15 15:14:00 -07:00
|
|
|
<!-- ios -->
|
2013-11-28 10:44:14 +02:00
|
|
|
<platform name="ios">
|
2013-05-20 11:26:05 -07:00
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="NetworkStatus">
|
2013-11-28 10:44:14 +02:00
|
|
|
<param name="ios-package" value="CDVConnection" />
|
2013-05-20 11:26:05 -07:00
|
|
|
</feature>
|
2013-05-15 15:14:00 -07:00
|
|
|
</config-file>
|
2013-11-28 10:44:14 +02:00
|
|
|
|
2013-05-15 15:14:00 -07:00
|
|
|
<header-file src="src/ios/CDVConnection.h" />
|
2013-05-20 11:26:05 -07:00
|
|
|
<source-file src="src/ios/CDVConnection.m" />
|
|
|
|
<header-file src="src/ios/CDVReachability.h" />
|
|
|
|
<source-file src="src/ios/CDVReachability.m" />
|
2013-07-23 15:10:59 -07:00
|
|
|
<framework src="SystemConfiguration.framework" weak="true" />
|
2013-05-15 15:14:00 -07:00
|
|
|
</platform>
|
2013-06-13 14:46:45 -07:00
|
|
|
|
2013-07-16 14:11:58 -07: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-13 14:46:45 -07:00
|
|
|
<!-- wp7 -->
|
|
|
|
<platform name="wp7">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="NetworkStatus">
|
2013-06-14 16:37:49 -07:00
|
|
|
<param name="wp-package" value="NetworkStatus"/>
|
2013-06-13 14:46:45 -07:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
2013-06-14 16:37:49 -07:00
|
|
|
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
|
|
|
|
<Capability Name="ID_CAP_NETWORKING" />
|
|
|
|
</config-file>
|
|
|
|
|
2013-07-08 16:03:14 -07:00
|
|
|
<source-file src="src/wp/NetworkStatus.cs" />
|
2013-06-13 14:46:45 -07:00
|
|
|
</platform>
|
|
|
|
|
2013-06-24 15:58:28 -07: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-08 16:03:14 -07:00
|
|
|
<source-file src="src/wp/NetworkStatus.cs" />
|
2013-06-24 15:58:28 -07:00
|
|
|
</platform>
|
|
|
|
|
2013-07-29 18:11:18 -07:00
|
|
|
<!-- windows8 -->
|
|
|
|
<platform name="windows8">
|
|
|
|
<js-module src="src/windows8/NetworkInfoProxy.js" name="NetworkInfoProxy">
|
|
|
|
<merges target="" />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
|
|
|
|
2013-11-28 10:44:14 +02:00
|
|
|
<!-- tizen -->
|
|
|
|
<platform name="tizen">
|
|
|
|
<js-module src="src/tizen/NetworkProxy.js" name="NetworkProxy">
|
|
|
|
<runs />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
2013-05-15 15:14:00 -07:00
|
|
|
</plugin>
|