plugin.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. Copyright (c) 2014 The Chromium Authors. All rights reserved.
  4. Use of this source code is governed by a BSD-style license that can be
  5. found in the LICENSE file.
  6. -->
  7. <plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
  8. id="cordova-plugin-chrome-apps-system-network"
  9. version="1.1.3-dev">
  10. <engines>
  11. <engine name="cordova" version=">=3.0.0" />
  12. </engines>
  13. <name>Chrome System Network API</name>
  14. <keywords>chrome,system,network</keywords>
  15. <repo>https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-system-network.git</repo>
  16. <issue>https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-system-network/issues</issue>
  17. <js-module src="system.network.js" name="system.network">
  18. <clobbers target="chrome.system.network" />
  19. </js-module>
  20. <platform name="android">
  21. <source-file src="src/android/ChromeSystemNetwork.java" target-dir="src/org/chromium" />
  22. <config-file target="res/xml/config.xml" parent="/widget">
  23. <feature name="ChromeSystemNetwork">
  24. <param name="android-package" value="org.chromium.ChromeSystemNetwork"/>
  25. </feature>
  26. </config-file>
  27. </platform>
  28. <platform name="ios">
  29. <source-file src="src/ios/ChromeSystemNetwork.m" />
  30. <config-file target="config.xml" parent="/widget">
  31. <feature name="ChromeSystemNetwork">
  32. <param name="ios-package" value="ChromeSystemNetwork"/>
  33. </feature>
  34. </config-file>
  35. </platform>
  36. </plugin>