-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
116 lines (98 loc) · 6.68 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="UTF-8"?>
<!-- config.xml reference: https://build.phonegap.com/docs/config-xml -->
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.quick.amolle"
version = "1.0.0">
<name>QUICK</name>
<description>
A SIMPLE GAME ABOUT REACTIONS
</description>
<author href="http://amolle.com" email="[email protected]">
Andreas Moldskred
</author>
<!-- Define the main entry-point to the application -->
<content src="index.html" />
<!-- Customize your app and platform with the preference element. -->
<preference name="DisallowOverscroll" value="true" />
<!-- android: MIN SDK version supported on the target device. MAX version is blank by default. -->
<preference name="android-minSdkVersion" value="14" />
<!-- Define a specific version of PhoneGap to build into your app. -->
<!-- <preference name="phonegap-version" value="cli-6.0.0" /> -->
<!-- Plugins -->
<!-- Core plugins -->
<plugin name="cordova-plugin-battery-status" source="npm" spec="~1.1.1" />
<plugin name="cordova-plugin-camera" source="npm" spec="~2.1.1" />
<plugin name="cordova-plugin-media-capture" source="npm" spec="~1.2.0" />
<plugin name="cordova-plugin-console" source="npm" spec="~1.0.2" />
<plugin name="cordova-plugin-contacts" source="npm" spec="~2.0.1" />
<plugin name="cordova-plugin-device" source="npm" spec="~1.1.1" />
<plugin name="cordova-plugin-device-motion" source="npm" spec="~1.2.0" />
<plugin name="cordova-plugin-device-orientation" source="npm" spec="~1.0.2" />
<plugin name="cordova-plugin-dialogs" source="npm" spec="~1.2.0" />
<plugin name="cordova-plugin-file" source="npm" spec="~4.1.1" />
<plugin name="cordova-plugin-file-transfer" source="npm" spec="~1.5.0" />
<plugin name="cordova-plugin-geolocation" source="npm" spec="~2.1.0" />
<plugin name="cordova-plugin-globalization" source="npm" spec="~1.0.3" />
<plugin name="cordova-plugin-inappbrowser" source="npm" spec="~1.3.0" />
<plugin name="cordova-plugin-media" source="npm" spec="~2.2.0" />
<plugin name="cordova-plugin-network-information" source="npm" spec="~1.2.0" />
<plugin name="cordova-plugin-splashscreen" source="npm" spec="~3.2.1" />
<plugin name="cordova-plugin-statusbar" source="npm" spec="~2.1.2" />
<plugin name="cordova-plugin-vibration" source="npm" spec="~2.1.0" />
<plugin name="cordova-plugin-whitelist" source="npm" spec="~1.2.1" />
<!-- Define app icon and splashscreen for each platform. -->
<platform name="android">
<icon src="www/res/icon/mipmap-ldpi/ic_launcher.png" density="ldpi" />
<icon src="www/res/icon/mipmap-mdpi/ic_launcher.png" density="mdpi" />
<icon src="www/res/icon/mipmap-hdpi/ic_launcher.png" density="hdpi" />
<icon src="www/res/icon/mipmap-xhdpi/ic_launcher.png" density="xhdpi" />
<icon src="www/res/icon/mipmap-xxhdpi/ic_launcher.png" density="xxhdpi" />
<icon src="www/res/icon/mipmap-xxxhdpi/ic_launcher.png" density="xxxhdpi" />
</platform>
<platform name="ios">
<icon src="www/res/icon/ios/Icon-App.png" platform="ios" width="57" height="57" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="114" height="114" />
<icon src="www/res/icon/ios/Icon-App-40.png" platform="ios" width="40" height="40" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="80" height="80" />
<icon src="www/res/icon/ios/Icon-App-50.png" platform="ios" width="50" height="50" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="100" height="100" />
<icon src="www/res/icon/ios/Icon-App-60.png" platform="ios" width="60" height="60" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="120" height="120" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="180" height="180" />
<icon src="www/res/icon/ios/Icon-App-72.png" platform="ios" width="72" height="72" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="144" height="144" />
<icon src="www/res/icon/ios/Icon-App-76.png" platform="ios" width="76" height="76" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="152" height="152" />
<icon src="www/res/icon/ios/Icon-App-small.png" platform="ios" width="29" height="29" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="58" height="58" />
<icon src="www/res/icon/ios/[email protected]" platform="ios" width="87" height="87" />
</platform>
<!--
Define access to external domains.
<access /> - a blank access tag denies access to all external resources.
<access origin="*" /> - a wildcard access tag allows access to all external resource.
Otherwise, you can specify specific domains:
-->
<access origin="*" />
<!--
<access origin="http://phonegap.com" /> - allow any secure requests to http://phonegap.com/
<access origin="http://phonegap.com" subdomains="true" /> - same as above, but including subdomains, such as http://build.phonegap.com/
<access origin="http://phonegap.com" browserOnly="true" /> - only allows http://phonegap.com to be opened by the child browser.
-->
<!-- Added the following intents to support the removal of whitelist code from base cordova to a plugin -->
<!-- Whitelist configuration. Refer to https://cordova.apache.org/docs/en/edge/guide_appdev_whitelist_index.md.html -->
<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="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>