config.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <widget id="com.izouma.animalweight" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
  3. <name>AnimalWeight</name>
  4. <description>
  5. A sample Apache Cordova application that responds to the deviceready event.
  6. </description>
  7. <author email="dev@cordova.apache.org" href="http://cordova.io">
  8. Apache Cordova Team
  9. </author>
  10. <content src="animalweight.html" />
  11. <plugin name="cordova-plugin-whitelist" spec="1" />
  12. <access origin="*" />
  13. <allow-intent href="http://*/*" />
  14. <allow-intent href="https://*/*" />
  15. <allow-intent href="tel:*" />
  16. <allow-intent href="sms:*" />
  17. <allow-intent href="mailto:*" />
  18. <allow-intent href="geo:*" />
  19. <allow-navigation href="*" />
  20. <platform name="android">
  21. <allow-intent href="market:*" />
  22. </platform>
  23. <platform name="ios">
  24. <allow-intent href="itms:*" />
  25. <allow-intent href="itms-apps:*" />
  26. </platform>
  27. <plugin name="cordova-plugin-bluetooth-serial" spec="https://github.com/x1ongzhu/BluetoothSerial.git" />
  28. <plugin name="cordova-plugin-remote-injection" spec="^0.5.2" />
  29. <plugin name="cordova-plugin-x-toast" spec="^2.6.2" />
  30. <plugin name="cordova-plugin-crosswalk-webview" spec="https://github.com/fribace/cordova-plugin-crosswalk-webview.git">
  31. <variable name="XWALK_VERSION" value="23+" />
  32. <variable name="XWALK_LITEVERSION" value="xwalk_core_library_canary:17+" />
  33. <variable name="XWALK_COMMANDLINE" value="--disable-pull-to-refresh-effect" />
  34. <variable name="XWALK_MODE" value="embedded" />
  35. <variable name="XWALK_MULTIPLEAPK" value="true" />
  36. </plugin>
  37. <plugin name="cordova-plugin-viewport" spec="^1.0.3" />
  38. <plugin name="cordova-plugin-ble-central" spec="^1.2.2">
  39. <variable name="BLUETOOTH_USAGE_DESCRIPTION" value="需要打开蓝牙来读取附近的设备" />
  40. </plugin>
  41. <plugin name="cordova-plugin-handheld" spec="../handheld" />
  42. <engine name="ios" spec="^4.5.4" />
  43. <engine name="android" spec="^6.3.0" />
  44. </widget>