diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-10 14:58:03 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-10 14:58:03 -0400 |
| commit | d73a4b1c5a2540077607dcc4001acbae85980ae4 (patch) | |
| tree | c30089f1742f9430bb18679dc6664157a5dc66f4 /StoneIsland/plugins/cordova-plugin-network-information/plugin.xml | |
| parent | 124e6c0a8d9577b4a30e0b265f5c23d637c41966 (diff) | |
app skeleton
Diffstat (limited to 'StoneIsland/plugins/cordova-plugin-network-information/plugin.xml')
| -rw-r--r-- | StoneIsland/plugins/cordova-plugin-network-information/plugin.xml | 174 |
1 files changed, 174 insertions, 0 deletions
diff --git a/StoneIsland/plugins/cordova-plugin-network-information/plugin.xml b/StoneIsland/plugins/cordova-plugin-network-information/plugin.xml new file mode 100644 index 00000000..e0ed97fc --- /dev/null +++ b/StoneIsland/plugins/cordova-plugin-network-information/plugin.xml @@ -0,0 +1,174 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + 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. +--> + +<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" +xmlns:android="http://schemas.android.com/apk/res/android" + id="cordova-plugin-network-information" + version="1.0.1"> + + <name>Network Information</name> + <description>Cordova Network Information Plugin</description> + <license>Apache 2.0</license> + <keywords>cordova,network,information</keywords> + <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> + + <js-module src="www/network.js" name="network"> + <clobbers target="navigator.connection" /> + <clobbers target="navigator.network.connection" /> + </js-module> + + <js-module src="www/Connection.js" name="Connection"> + <clobbers target="Connection" /> + </js-module> + + <!-- firefoxos --> + <platform name="firefoxos"> + <js-module src="src/firefoxos/NetworkProxy.js" name="NetworkProxy"> + <runs /> + </js-module> + </platform> + + <!-- android --> + <platform name="android"> + <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> + + <!-- 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> + + + <!-- ubuntu --> + <platform name="ubuntu"> + <config-file target="config.xml" parent="/*"> + <feature name="Camera"> + <param policy_group="connectivity" policy_version="1" /> + </feature> + </config-file> + <header-file src="src/ubuntu/network_information.h" /> + <source-file src="src/ubuntu/network_information.cpp" /> + </platform> + + <!-- ios --> + <platform name="ios"> + <config-file target="config.xml" parent="/*"> + <feature name="NetworkStatus"> + <param name="ios-package" value="CDVConnection" /> + </feature> + </config-file> + + <header-file src="src/ios/CDVConnection.h" /> + <source-file src="src/ios/CDVConnection.m" /> + <header-file src="src/ios/CDVReachability.h" /> + <source-file src="src/ios/CDVReachability.m" /> + <framework src="SystemConfiguration.framework" weak="true" /> + </platform> + + <!-- 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> + + <!-- wp7 --> + <platform name="wp7"> + <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> + + <source-file src="src/wp/NetworkStatus.cs" /> + </platform> + + <!-- 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> + + <source-file src="src/wp/NetworkStatus.cs" /> + </platform> + + <!-- windows8 --> + <platform name="windows8"> + <js-module src="src/windows/NetworkInfoProxy.js" name="NetworkInfoProxy"> + <merges target="" /> + </js-module> + </platform> + + <!-- windows --> + <platform name="windows"> + <js-module src="src/windows/NetworkInfoProxy.js" name="NetworkInfoProxy"> + <merges target="" /> + </js-module> + </platform> + + <!-- tizen --> + <platform name="tizen"> + <js-module src="src/tizen/NetworkProxy.js" name="NetworkProxy"> + <runs /> + </js-module> + </platform> + + <!-- browser --> + <platform name="browser"> + <js-module src="www/browser/network.js" name="browserNetwork"> + <clobbers target="navigator.connection" /> + <clobbers target="navigator.network.connection" /> + </js-module> + </platform> +</plugin> |
