| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version='1.0' encoding='utf-8'?>
- <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">
- <name>AnimalWeight</name>
- <description>
- A sample Apache Cordova application that responds to the deviceready event.
- </description>
- <author email="dev@cordova.apache.org" href="http://cordova.io">
- Apache Cordova Team
- </author>
- <content src="animalweight.html" />
- <plugin name="cordova-plugin-whitelist" spec="1" />
- <access origin="*" />
- <allow-intent href="http://*/*" />
- <allow-intent href="https://*/*" />
- <allow-intent href="tel:*" />
- <allow-intent href="sms:*" />
- <allow-intent href="mailto:*" />
- <allow-intent href="geo:*" />
- <allow-navigation href="*" />
- <platform name="android">
- <allow-intent href="market:*" />
- </platform>
- <platform name="ios">
- <allow-intent href="itms:*" />
- <allow-intent href="itms-apps:*" />
- </platform>
- <plugin name="cordova-plugin-bluetooth-serial" spec="https://github.com/x1ongzhu/BluetoothSerial.git" />
- <plugin name="cordova-plugin-remote-injection" spec="^0.5.2" />
- <plugin name="cordova-plugin-x-toast" spec="^2.6.2" />
- <plugin name="cordova-plugin-crosswalk-webview" spec="https://github.com/fribace/cordova-plugin-crosswalk-webview.git">
- <variable name="XWALK_VERSION" value="23+" />
- <variable name="XWALK_LITEVERSION" value="xwalk_core_library_canary:17+" />
- <variable name="XWALK_COMMANDLINE" value="--disable-pull-to-refresh-effect" />
- <variable name="XWALK_MODE" value="embedded" />
- <variable name="XWALK_MULTIPLEAPK" value="true" />
- </plugin>
- <plugin name="cordova-plugin-viewport" spec="^1.0.3" />
- <plugin name="cordova-plugin-ble-central" spec="^1.2.2">
- <variable name="BLUETOOTH_USAGE_DESCRIPTION" value="需要打开蓝牙来读取附近的设备" />
- </plugin>
- <plugin name="cordova-plugin-handheld" spec="../handheld" />
- <engine name="ios" spec="^4.5.4" />
- <engine name="android" spec="^6.3.0" />
- </widget>
|