forked from shamsbd71/JGJEDStarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
113 lines (95 loc) · 5.36 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
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="com.ionicframework.jgjedstarter"
version="0.0.1"
xmlns="http://www.w3.org/ns/widgets"
xmlns:gap="http://phonegap.com/ns/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>JED Starter</name>
<description>
Find extensions for your Joomla site in the Joomla Extensions Directory, the official directory for Joomla components, modules and plugins.
</description>
<author email="[email protected]" href="http://www.joomgap.com/">
JoomGap
</author>
<preference name='phonegap-version' value='cli-5.2.0' />
<gap:plugin name="cordova-plugin-console" version="1.0.1" source="npm" />
<gap:plugin name="cordova-plugin-device" version="1.0.1" source="npm" />
<gap:plugin name="cordova-plugin-device-orientation" version="1.0.1" source="npm" />
<gap:plugin name="cordova-plugin-dialogs" version="1.1.1" source="npm" />
<gap:plugin name="cordova-plugin-globalization" version="1.0.1" source="npm" />
<gap:plugin name="cordova-plugin-inappbrowser" version="1.0.1" source="npm" />
<gap:plugin name="cordova-plugin-network-information" version="1.0.1" source="npm" />
<gap:plugin name="cordova-plugin-splashscreen" version="2.1.0" source="npm" />
<gap:plugin name="cordova-plugin-whitelist" version="1.0.0" source="npm" />
<gap:plugin name="ionic-plugin-keyboard" version="1.0.7" source="npm" />
<gap:config-file platform="android" parent="/manifest">
<application android:debuggable="true" />
</gap:config-file>
<content src="index.html" />
<preference name="permissions" value="none" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
<preference name="webviewbounce" value="false" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="false" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<preference name="disable-cursor" value="false" />
<preference name="android-minSdkVersion" value="16" />
<preference name="android-installLocation" value="auto" />
<!-- Ionic Framework -->
<preference name="UIWebViewBounce" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="BackupWebStorage" value="none"/>
<preference name="auto-hide-splash-screen" value="false" />
<preference name="AutoHideSplashScreen" value="false" />
<icon gap:platform="android" src="icon.png" />
<icon gap:platform="android" gap:qualifier="ldpi" src="icon-36-ldpi.png" />
<icon gap:platform="android" gap:qualifier="mdpi" src="icon-48-mdpi.png" />
<icon gap:platform="android" gap:qualifier="hdpi" src="icon-72-hdpi.png" />
<icon gap:platform="android" gap:qualifier="xhdpi" src="icon-96-xhdpi.png" />
<icon gap:platform="ios" height="128" src="icon.png" width="128" />
<icon gap:platform="ios" height="57" src="icon-57.png" width="57" />
<icon gap:platform="ios" height="72" src="icon-72.png" width="72" />
<icon gap:platform="ios" height="114" src="icon-57-2x.png" width="114" />
<icon gap:platform="ios" height="144" src="icon-72-2x.png" width="144" />
<icon gap:platform="ios" height="76" src="icon-76.png" width="76" />
<icon gap:platform="ios" height="120" src="icon-120.png" width="120" />
<icon gap:platform="ios" height="152" src="icon-152.png" width="152" />
<!--
<preference name="SplashScreen" value="splash" />
<gap:splash gap:platform="android" gap:qualifier="port-ldpi" src="screen-android-ldpi-portrait.png" />
<gap:splash gap:platform="android" gap:qualifier="port-mdpi" src="screen-android-mdpi-portrait.png" />
<gap:splash gap:platform="android" gap:qualifier="port-hdpi" src="screen-android-hdpi-portrait.png" />
<gap:splash gap:platform="android" gap:qualifier="port-xhdpi" src="screen-android-xhdpi-portrait.png" />
<gap:splash gap:platform="ios" height="480" src="screen-iphone-portrait.png" width="320" />
<gap:splash gap:platform="ios" height="960" src="screen-iphone-portrait-2x.png" width="640" />
<gap:splash gap:platform="ios" height="1136" src="screen-iphone-portrait-568h-2x.png" width="640" />
<gap:splash gap:platform="ios" height="1024" src="screen-ipad-portrait.png" width="768" />
<gap:splash gap:platform="ios" height="768" src="screen-ipad-landscape.png" width="1024" />
-->
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-navigation href="http://*/*" />
<allow-navigation href="https://*/*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<!-- Ionic Framework -->
<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar" onload="true"/>
</feature>
</widget>