-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.xml
More file actions
84 lines (84 loc) · 4.99 KB
/
config.xml
File metadata and controls
84 lines (84 loc) · 4.99 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
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.mayzaf"
versionCode="1.0"
version = "3.2">
<name>Note Jotter</name>
<description>
A simple note taking application </description>
<author href="http:www.mayzaf.com" email="yaqub320@gmail.com">
Yaqub Mahmoud
</author>
<preference name="phonegap-version" value="3.6.3" />
<preference name="orientation" value="portrait" />
<preference name="fullscreen" value="true" />
<preference name="target-device" value="universal" />
<preference name="webviewbounce" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="true" />
<preference name="ios-statusbarstyle" value="default" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="true" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<preference name="EnableViewportScale" value="true" />
<preference name="MediaPlaybackRequiresUserAction" value="true" />
<preference name="AllowInlineMediaPlayback" value="true" />
<preference name="BackupWebStorage" value="cloud" />
<preference name="TopActivityIndicator" value="gray" />
<preference name="KeyboardDisplayRequiresUserAction" value="true" />
<preference name="HideKeyboardFormAccessoryBar" value="true" />
<preference name="SuppressesIncrementalRendering" value="true" />
<preference name="android-minSdkVersion" value="9" />
<preference name="android-installLocation" value="auto" />
<preference name="SplashScreenDelay" value="5000" />
<preference name="ErrorUrl" value=""/>
<preference name="BackgroundColor" value="0x000000"/>
<preference name="KeepRunning" value="true"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="LoadingDialog" value=","/>
<preference name="LoadUrlTimeoutValue" value="20000" />
<preference name="disable-cursor" value="true" />
<gap:platform name="ios" />
<gap:platform name="android" />
<gap:platform name="winphone" />
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/device"/>
<icon src="res/icon/icon.png" gap:platform="ios" width="57" height="57" />
<icon src="res/icon/icon.png" gap:platform="ios" width="72" height="72" />
<icon src="res/icon/icon.png" gap:platform="ios" width="114" height="114" />
<icon src="res/icon/icon.png" gap:platform="ios" width="144" height="144" />
<icon src="res/icon/icon.png" gap:platform="ios" width="76" height="76" />
<icon src="res/icon/icon.png" gap:platform="ios" width="120" height="120" />
<icon src="res/icon/icon.png" gap:platform="ios" width="152" height="152" />
<icon src="res/icon/icon.png" gap:platform="android" gap:density="ldpi" />
<icon src="res/icon/icon.png" gap:platform="android" gap:density="mdpi" />
<icon src="res/icon/icon.png" gap:platform="android" gap:density="hdpi" />
<icon src="res/icon/icon.png" gap:platform="android" gap:density="xhdpi" />
<icon src="res/icon/icon.png" gap:platform="android" gap:density="xxhdpi" />
<icon src="res/icon/icon.png" gap:platform="android" gap:density="xxxhdpi" />
<icon src="res/icon/icon.png" gap:platform="winphone" />
<icon src="res/icon/icon.png" gap:platform="winphone" gap:role="background" />
<icon src="res/icon/icon.png" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="320" height="480" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="480" height="320" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="640" height="960" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="960" height="640" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="640" height="1136" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="1136" height="640" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="768" height="1024 " />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="1024" height="768" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="1536" height="2048" />
<gap:splash src="res/splash/splash.png" gap:platform="ios" width="2048" height="1536" />
<gap:splash src="res/splash/splash.png" gap:platform="android" gap:density="ldpi" />
<gap:splash src="res/splash/splash.png" gap:platform="android" gap:density="mdpi" />
<gap:splash src="res/splash/splash.png" gap:platform="android" gap:density="hdpi" />
<gap:splash src="res/splash/splash.png" gap:platform="android" gap:density="xhdpi" />
<gap:splash src="res/splash/splash.png" gap:platform="android" gap:density="xxhdpi" />
<gap:splash src="res/splash/splash.png" gap:platform="winphone" />
<gap:splash src="splash.png" />
</widget>