-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
executable file
·70 lines (60 loc) · 3.6 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
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
xmlns:android = "http://schemas.android.com/apk/res/android"
id = "com.circlecube.mathfactflash"
versionCode="20171101"
version = "2017.11.01">
<name>Math Facts Flash</name>
<description>
Flash Cards to practice Math Facts! Customize the operation and number ranges.
Game mode will continue endlessly and test mode will have a set number of questions. Both modes keep score.
</description>
<author href="https://circlecube.com" email="evan@circlecube.com">Evan Mullins</author>
<config-file platform="android" parent="/manifest" mode="merge">
<supports-screens android:anyDensity="true" android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true" />
</config-file>
<preference name="orientation" value="portrait"/>
<preference name="fullscreen" value="true" />
<preference name="permissions" value="none"/>
<preference name="android-minSdkVersion" value="14" />
<preference name="android-targetSdkVersion" value="23" />
<icon src="icon/android/mipmap-hdpi/ic_launcher.png" width="72" height="72" />
<icon src="icon/ios/iTunesArtwork@1x.png" width="512" height="512" />
<icon src="icon/ios/iTunesArtwork@2x.png" width="1024" height="1024" />
<!-- Androind -->
<platform name="android">
<allow-intent href="market:*" />
<icon src="icon/android/mipmap-ldpi/ic_launcher.png" density="ldpi" width="36" height="36" />
<icon src="icon/android/mipmap-mdpi/ic_launcher.png" density="mdpi" width="48" height="48" />
<icon src="icon/android/mipmap-hdpi/ic_launcher.png" density="hdpi" width="72" height="72" />
<icon src="icon/android/mipmap-xhdpi/ic_launcher.png" density="xhdpi" width="96" height="96" />
<icon src="icon/android/mipmap-xxhdpi/ic_launcher.png" density="xxhdpi" width="144" height="144" />
<icon src="icon/android/mipmap-xxxhdpi/ic_launcher.png" density="xxxhdpi" width="192" height="192" />
</platform>
<!-- iOS -->
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<icon src="icon/ios/Icon-App-29x29@1x.png" width="29" height="29" />
<icon src="icon/ios/Icon-App-29x29@2x.png" width="58" height="58" />
<icon src="icon/ios/Icon-App-29x29@3x.png" width="87" height="87" />
<icon src="icon/ios/Icon-App-40x40@1x.png" width="40" height="40" />
<icon src="icon/ios/Icon-App-40x40@2x.png" width="80" height="80" />
<icon src="icon/ios/Icon-App-40x40@3x.png" width="120" height="120" />
<icon src="icon/ios/Icon-App-60x60@1x.png" width="60" height="60" />
<icon src="icon/ios/Icon-App-60x60@2x.png" width="120" height="120" />
<icon src="icon/ios/Icon-App-60x60@3x.png" width="180" height="180" />
<icon src="icon/ios/Icon-App-76x76@1x.png" width="76" height="76" />
<icon src="icon/ios/Icon-App-76x76@2x.png" width="152" height="152" />
<icon src="icon/ios/Icon-App-76x76@3x.png" width="228" height="228" />
<icon src="icon/ios/Icon-App-83.5x83.5@2x.png" width="167" height="167" />
<icon src="icon/ios/iTunesArtwork@1x.png" width="512" height="512" />
<icon src="icon/ios/iTunesArtwork@2x.png" width="1024" height="1024" />
<icon src="icon/ios/iTunesArtwork@3x.png" width="1536" height="1536" />
</platform>
</widget>