-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.xml
102 lines (91 loc) · 4.61 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="busybeespelling.com.github.ckellydesign" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>BusyBee Spelling</name>
<description>
A learning game for children focusing on phonics.
</description>
<author email="ckelly@ckellydesign.net" href="http://ckellydesign.net">
Conor Kelly
</author>
<author email="beth@king-salmon.com" href="http://www.king-salmon.com">
Beth Hayes
</author>
<content src="index.html" />
<plugin name="org.apache.cordova.splashscreen" />
<plugin name="cordova-plugin-whitelist" version="1" />
<plugin name="org.apache.cordova.media" />
<!--<plugin name="com.rjfun.cordova.plugin.lowlatencyaudio" /> some one suggested this to fix sound issues -->
<!--<plugin name="org.apache.cordova.core.Device"/> some one suggested this to fix sound issues -->
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />f
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<preference name="SplashScreen" value="screen" />
<preference name="AutoHideSplashScreen" value="false" />
<preference name="SplashScreenDelay" value="10000" />
<splash src="splash.png"/>
<icon src="logo.png" />
<preference name="orientation" value="landscape" />
<preference name="fullscreen" value="true" />
<preference name="DisallowOverscroll" value="true" />
<platform name="android">
<!--<allow-intent href="market:*" /> -->
<preference name="orientation" value="landscape" />
<splash src="res/splash.png" density="land-hdpi"/>
<splash src="res/splash.png" density="land-ldpi"/>
<splash src="res/splash.png" density="land-mdpi"/>
<splash src="res/splash.png" density="land-xhdpi"/>
<icon src="res/android/ldpi.png" density="ldpi" />
<icon src="res/android/mdpi.png" density="mdpi" />
<icon src="res/android/hdpi.png" density="hdpi" />
<icon src="res/android/xhdpi.png" density="xhdpi" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<preference name="orientation" value="landscape" />
<preference name="exit-on-suspend" value="true" />
<preference name="android-minSdkVersion" value="19" />
<preference name="target-device" value="handset" />
<splash src="splash.png" width="320" height="480"/>
<splash src="splash.png" width="640" height="960"/>
<splash src="splash.png" width="768" height="1024"/>
<splash src="splash.png" width="1536" height="2048"/>
<splash src="splash.png" width="1024" height="768"/>
<splash src="splash.png" width="2048" height="1536"/>
<splash src="splash.png" width="640" height="1136"/>
<splash src="splash.png" width="750" height="1334"/>
<splash src="splash.png" width="1242" height="2208"/>
<splash src="splash.png" width="2208" height="1242"/>
<!-- iOS 8.0+ -->
<!-- iPhone 6 Plus -->
<icon src="/res/ios/icon-60@3x.png" width="180" height="180" />
<!-- iOS 7.0+ -->
<!-- iPhone / iPod Touch -->
<icon src="/res/ios/icon-60.png" width="60" height="60" />
<icon src="/res/ios/icon-60@2x.png" width="120" height="120" />
<!-- iPad -->
<icon src="/res/ios/icon-76.png" width="76" height="76" />
<icon src="/res/ios/icon-76@2x.png" width="152" height="152" />
<!-- iOS 6.1 -->
<!-- Spotlight Icon -->
<icon src="/res/ios/icon-40.png" width="40" height="40" />
<icon src="/res/ios/icon-40@2x.png" width="80" height="80" />
<!-- iPhone / iPod Touch -->
<!--<icon src="res/ios/icon.png" width="57" height="57" />-->
<!--<icon src="res/ios/icon@2x.png" width="114" height="114" />-->
<!-- iPad -->
<!--<icon src="res/ios/icon-72.png" width="72" height="72" />-->
<!--<icon src="res/ios/icon-72@2x.png" width="144" height="144" />-->
<!-- iPhone Spotlight and Settings Icon -->
<icon src="/res/ios/icon-29.png" width="29" height="29" />
<icon src="/res/ios/icon-29@2x.png" width="58" height="58" />
<!-- iPad Spotlight and Settings Icon -->
<!--<icon src="res/ios/icon-50.png" width="50" height="50" />-->
<!--<icon src="res/ios/icon-50@2x.png" width="100" height="100" />-->
</platform>
<!--<preference name="Orientation" value="landscape" />-->
</widget>