-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.xml
82 lines (66 loc) · 3.45 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.psellos.istc.recaf"
version="1.0.8"
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0"
xmlns:gap="http://phonegap.com/ns/1.0"
>
<name>Recaf</name>
<description>
Food Journaling through Photos
</description>
<author email="[email protected]">
Team
</author>
<content src="index.html" />
<access origin="*" />
<preference name="phonegap-version" value="3.6.3" />
<preference name="fullscreen" value="true" />
<preference name="orientation" value="portrait" />
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
<gap:plugin name="com.ionic.keyboard" />
<gap:plugin name="cordova-plugin-camera" />
<gap:plugin name="cordova-plugin-statusbar" />
<gap:plugin name="cordova-plugin-file" />
<gap:plugin name="org.apache.cordova.console" />
<gap:plugin name="org.apache.cordova.device" />
<gap:plugin name="com.couchbase.lite.phonegap" />
<gap:plugin name="info.protonet.imageresizer" />
<gap:platform name="ios" />
<!-- Don't store local date in an iCloud backup. Turn this to "cloud" to enable storage
to be sent to iCloud. Note: enabling this could result in Apple rejecting your app.
-->
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="BackupWebStorage" value="none" />
<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar" onload="true" />
</feature>
<platform name="ios">
<icon src="icons/ios/icon-60.png" width="60" height="60" />
<icon src="icons/ios/[email protected]" width="120" height="120" />
<icon src="icons/ios/icon-76.png" width="76" height="76" />
<icon src="icons/ios/[email protected]" width="152" height="152" />
<icon src="icons/ios/icon-40.png" width="40" height="40" />
<icon src="icons/ios/[email protected]" width="80" height="80" />
<icon src="icons/ios/icon.png" width="57" height="57" />
<icon src="icons/ios/[email protected]" width="114" height="114" />
<icon src="icons/ios/icon-72.png" width="72" height="72" />
<icon src="icons/ios/[email protected]" width="144" height="144" />
<icon src="icons/ios/icon-small.png" width="29" height="29" />
<icon src="icons/ios/[email protected]" width="58" height="58" />
<icon src="icons/ios/icon-50.png" width="50" height="50" />
<icon src="icons/ios/[email protected]" width="100" height="100" />
<splash src="splash/ios/Default-568h@2x~iphone.png" width="640" height="1136" />
<splash src="splash/ios/Default-667h.png" width="750" height="1334" />
<splash src="splash/ios/Default-736h.png" width="1242" height="2208" />
<splash src="splash/ios/Default-Landscape-736h.png" width="2208" height="1242" />
<splash src="splash/ios/Default-Landscape@2x~ipad.png" width="2048" height="1536" />
<splash src="splash/ios/Default-Landscape~ipad.png" width="1024" height="768" />
<splash src="splash/ios/Default-Portrait@2x~ipad.png" width="1536" height="2048" />
<splash src="splash/ios/Default-Portrait~ipad.png" width="768" height="1024" />
<splash src="splash/ios/Default@2x~iphone.png" width="640" height="960" />
<splash src="splash/ios/Default~iphone.png" width="320" height="480" />
</platform>
</widget>