12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!--
- Copyright (c) 2014 The Chromium Authors. All rights reserved.
- Use of this source code is governed by a BSD-style license that can be
- found in the LICENSE file.
- -->
- <plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
- id="cordova-plugin-chrome-apps-system-network"
- version="1.1.3-dev">
- <engines>
- <engine name="cordova" version=">=3.0.0" />
- </engines>
- <name>Chrome System Network API</name>
- <keywords>chrome,system,network</keywords>
- <repo>https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-system-network.git</repo>
- <issue>https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-system-network/issues</issue>
- <js-module src="system.network.js" name="system.network">
- <clobbers target="chrome.system.network" />
- </js-module>
- <platform name="android">
- <source-file src="src/android/ChromeSystemNetwork.java" target-dir="src/org/chromium" />
- <config-file target="res/xml/config.xml" parent="/widget">
- <feature name="ChromeSystemNetwork">
- <param name="android-package" value="org.chromium.ChromeSystemNetwork"/>
- </feature>
- </config-file>
- </platform>
- <platform name="ios">
- <source-file src="src/ios/ChromeSystemNetwork.m" />
- <config-file target="config.xml" parent="/widget">
- <feature name="ChromeSystemNetwork">
- <param name="ios-package" value="ChromeSystemNetwork"/>
- </feature>
- </config-file>
- </platform>
- </plugin>
|