forked from davidhealey/waistline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
43 lines (43 loc) · 2.07 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.waist.line" version="1.0.2" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Waistline</name>
<description>
A libre calorie counter including a barcode scanner linked to the Open Food Facts database.
</description>
<author email="[email protected]" href="">
David Healey
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
<icon density="mdpi" src="res/android/mdpi.png" />
<icon density="hdpi" src="res/android/hdpi.png" />
<icon density="xhdpi" src="res/android/xhdpi.png" />
<icon density="xxhdpi" src="res/android/xxhdpi.png" />
<icon density="xxxhdpi" src="res/android/xxxhdpi.png" />
<splash density="port-hdpi" src="res/screen/android/hdpi.png" />
<splash density="port-ldpi" src="res/screen/android/ldpi.png" />
<splash density="port-mdpi" src="res/screen/android/mdpi.png" />
<splash density="port-xhdpi" src="res/screen/android/xhdpi.png" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<plugin name="cordova-plugin-indexeddb-async" spec="^2.2.1" />
<plugin name="phonegap-plugin-barcodescanner" spec="^7.1.1">
<variable name="ANDROID_SUPPORT_V4_VERSION" value="27.+" />
</plugin>
<plugin name="cordova-plugin-splashscreen" spec="https://github.com/apache/cordova-plugin-splashscreen.git" />
<plugin name="cordova-plugin-browsersync" spec="~0.1.8" />
<plugin name="cordova-plugin-file" spec="~6.0.1" />
<preference name="SplashScreenDelay" value="1000" />
<preference name="orientation" value="portrait" />
<engine name="browser" spec="^5.0.3" />
<engine name="android" spec="^7.0.0" />
</widget>