forked from ransoing/spyfall-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.xml
More file actions
74 lines (73 loc) · 4.56 KB
/
config.xml
File metadata and controls
74 lines (73 loc) · 4.56 KB
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
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.ransomchristofferson.spyfall" version="1.0.0">
<name>Spyrise</name>
<description>An unofficial spyfall clone. Requires only one device to play.</description>
<author href="http://spyfall.ransomchristofferson.com" email="ransoing@gmail.com">Spyrise</author>
<content src="index.html"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="android-minSdkVersion" value="14"/>
<plugin name="cordova-plugin-dialogs" source="npm" spec="~1.2.0"/>
<icon src="icon.png"/>
<platform name="android">
<icon src="res/icon/android/icon-36-ldpi.png" density="ldpi"/>
<icon src="res/icon/android/icon-48-mdpi.png" density="mdpi"/>
<icon src="res/icon/android/icon-72-hdpi.png" density="hdpi"/>
<icon src="res/icon/android/icon-96-xhdpi.png" density="xhdpi"/>
<icon src="res/icon/android/icon-144-xxhdpi.png" density="xxhdpi"/>
<icon src="res/icon/android/icon-192-xxxhdpi.png" density="xxxhdpi"/>
<splash src="res/screen/android/screen-ldpi-portrait.png" density="port-ldpi"/>
<splash src="res/screen/android/screen-mdpi-portrait.png" density="port-mdpi"/>
<splash src="res/screen/android/screen-hdpi-portrait.png" density="port-hdpi"/>
<splash src="res/screen/android/screen-xhdpi-portrait.png" density="port-xhdpi"/>
</platform>
<platform name="ios">
<icon src="res/icon/ios/icon.png" platform="ios" width="57" height="57"/>
<icon src="res/icon/ios/icon-2x.png" platform="ios" width="114" height="114"/>
<icon src="res/icon/ios/icon-40.png" platform="ios" width="40" height="40"/>
<icon src="res/icon/ios/icon-40-2x.png" platform="ios" width="80" height="80"/>
<icon src="res/icon/ios/icon-50.png" platform="ios" width="50" height="50"/>
<icon src="res/icon/ios/icon-50-2x.png" platform="ios" width="100" height="100"/>
<icon src="res/icon/ios/icon-60.png" platform="ios" width="60" height="60"/>
<icon src="res/icon/ios/icon-60-2x.png" platform="ios" width="120" height="120"/>
<icon src="res/icon/ios/icon-60-3x.png" platform="ios" width="180" height="180"/>
<icon src="res/icon/ios/icon-72.png" platform="ios" width="72" height="72"/>
<icon src="res/icon/ios/icon-72-2x.png" platform="ios" width="144" height="144"/>
<icon src="res/icon/ios/icon-76.png" platform="ios" width="76" height="76"/>
<icon src="res/icon/ios/icon-76-2x.png" platform="ios" width="152" height="152"/>
<icon src="res/icon/ios/icon-small.png" platform="ios" width="29" height="29"/>
<icon src="res/icon/ios/icon-small-2x.png" platform="ios" width="58" height="58"/>
<splash src="res/screen/ios/screen-iphone-portrait-568h-2x.png" platform="ios" width="640" height="1136"/>
<splash src="res/screen/ios/screen-iphone-portrait-667h.png" platform="ios" width="750" height="1334"/>
<splash src="res/screen/ios/screen-iphone-portrait-736h.png" platform="ios" width="1242" height="2208"/>
<splash src="res/screen/ios/screen-ipad-portrait-2x.png" platform="ios" width="1536" height="2048"/>
<splash src="res/screen/ios/screen-ipad-portrait.png" platform="ios" width="768" height="1024"/>
<splash src="res/screen/ios/screen-iphone-portrait-2x.png" platform="ios" width="640" height="960"/>
<splash src="res/screen/ios/screen-iphone-portrait.png" platform="ios" width="320" height="480"/>
</platform>
<platform name="wp8">
<icon src="res/icon/wp8/ApplicationIcon.png" platform="wp8" width="99" height="99"/>
<icon src="res/icon/wp8/Background.png" platform="wp8" width="159" height="159"/>
<splash src="res/screen/wp8/SplashScreenImage.jpg" platform="wp8" width="768" height="1280"/>
</platform>
<platform name="windows">
<icon src="res/icon/windows8/logo.png" platform="windows" width="150" height="150"/>
<icon src="res/icon/windows8/smalllogo.png" platform="windows" width="30" height="30"/>
<icon src="res/icon/windows8/storelogo.png" platform="windows" width="50" height="50"/>
<splash src="res/screen/windows8/splashscreen.png" platform="windows" width="620" height="300"/>
</platform>
<access origin="*"/>
<access origin="mailto:*" launch-external="yes" />
<access origin="tel:*" launch-external="yes" />
<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>