This repository has been archived by the owner on Sep 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
86 lines (84 loc) · 4.93 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version='1.0' encoding='utf-8'?>
<widget id="xyz.spot.map" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<preference name="android-minSdkVersion" value="22"/>
<preference name="DisallowOverscroll" value="true"/>
<hook src="hooks/hookers.js" type="before_prepare"/>
<hook src="hooks/beforedep.js" type="before_deploy"/>
<name>Spot-Map</name>
<description>
Entry for the COVID-19 Data Challenge
</description>
<content src="index.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:*"/>
<platform name="ios">
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
<icon src="res/icon/ios/icon-1024.png" width="1024" height="1024"/>
<icon src="res/icon/ios/icon-small.png" width="29" height="29"/>
<icon src="res/icon/ios/[email protected]" width="58" height="58"/>
<icon src="res/icon/ios/[email protected]" width="87" height="87"/>
<icon src="res/icon/ios/icon-small-40.png" width="40" height="40"/>
<icon src="res/icon/ios/[email protected]" width="80" height="80"/>
<icon src="res/icon/ios/[email protected]" width="120" height="120"/>
<icon src="res/icon/ios/icon-small-50.png" width="50" height="50"/>
<icon src="res/icon/ios/[email protected]" width="100" height="100"/>
<icon src="res/icon/ios/icon.png" width="57" height="57"/>
<icon src="res/icon/ios/[email protected]" width="114" height="114"/>
<icon src="res/icon/ios/icon-60.png" width="60" height="60"/>
<icon src="res/icon/ios/[email protected]" width="120" height="120"/>
<icon src="res/icon/ios/[email protected]" width="180" height="180"/>
<icon src="res/icon/ios/icon-72.png" width="72" height="72"/>
<icon src="res/icon/ios/[email protected]" width="144" height="144"/>
<icon src="res/icon/ios/icon-76.png" width="76" height="76"/>
<icon src="res/icon/ios/[email protected]" width="152" height="152"/>
<icon src="res/icon/ios/icon-167.png" width="167" height="167"/>
<icon src="res/icon/ios/[email protected]" width="167" height="167"/>
<!-- Storyboard portrait -->
<splash src="res/screen/ios/Default@2x~iphone~anyany.png"/>
<splash src="res/screen/ios/Default@2x~iphone~comany.png"/>
<splash src="res/screen/ios/Default@3x~iphone~anyany.png"/>
<splash src="res/screen/ios/Default@3x~iphone~comany.png"/>
<splash src="res/screen/ios/Default@2x~ipad~anyany.png"/>
<splash src="res/screen/ios/Default@2x~ipad~comany.png"/>
<!-- Storyboard landscape -->
<splash src="res/screen/ios/Default@2x~iphone~comcom.png"/>
<splash src="res/screen/ios/Default@3x~iphone~anycom.png"/>
</platform>
<platform name="android">
<allow-intent href="market:*"/>
<preference name="SplashMaintainAspectRatio" value="true"/>
<preference name="SplashShowOnlyFirstTime" value="true"/>
<icon density="ldpi" src="res/icon/android/ldpi.png"/>
<icon density="mdpi" src="res/icon/android/mdpi.png"/>
<icon density="hdpi" src="res/icon/android/hdpi.png"/>
<icon density="xhdpi" src="res/icon/android/xhdpi.png"/>
<icon density="xxhdpi" src="res/icon/android/xxhdpi.png"/>
<icon density="xxxhdpi" src="res/icon/android/xxxhdpi.png"/>
<!-- Portrait -->
<splash density="port-ldpi" src="res/screen/android/splash-port-ldpi.png"/>
<splash density="port-mdpi" src="res/screen/android/splash-port-mdpi.png"/>
<splash density="port-hdpi" src="res/screen/android/splash-port-hdpi.png"/>
<splash density="port-xhdpi" src="res/screen/android/splash-port-xhdpi.png"/>
<splash density="port-xxhdpi" src="res/screen/android/splash-port-xxhdpi.png"/>
<splash density="port-xxxhdpi" src="res/screen/android/splash-port-xxxhdpi.png"/>
<!-- Landscape -->
<splash density="land-ldpi" src="res/screen/android/splash-land-ldpi.png"/>
<splash density="land-mdpi" src="res/screen/android/splash-land-mdpi.png"/>
<splash density="land-hdpi" src="res/screen/android/splash-land-hdpi.png"/>
<splash density="land-xhdpi" src="res/screen/android/splash-land-xhdpi.png"/>
<splash density="land-xxhdpi" src="res/screen/android/splash-land-xxhdpi.png"/>
<splash density="land-xxxhdpi" src="res/screen/android/splash-land-xxxhdpi.png"/>
</platform>
<platform name="browser">
<preference name="ShowSplashScreen" value="false"/>
<preference name="SplashScreen" value="./res/Spot-Map.jpg"/>
<preference name="SplashScreenBackgroundColor" value="white"/>
</platform>
<allow-navigation href="*"/></widget>