You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you do not want any permissions to be added to your app, add the
21
+
following tag to your config.xml; you will still have the INTERNET
22
+
permission on your app, which PhoneGap requires.
23
+
-->
24
+
<preferencename="permissions"value="none" />
25
+
26
+
<!-- Customize your app and platform with the preference element. -->
27
+
<preferencename="orientation"value="portrait" /> <!-- all: default means both landscape and portrait are enabled -->
28
+
<preferencename="target-device"value="universal" /> <!-- all: possible values handset, tablet, or universal -->
29
+
<preferencename="fullscreen"value="true" /> <!-- all: hides the status bar at the top of the screen -->
30
+
<preferencename="webviewbounce"value="true" /> <!-- ios: control whether the screen 'bounces' when scrolled beyond the top -->
31
+
<preferencename="prerendered-icon"value="true" /> <!-- ios: if icon is prerendered, iOS will not apply it's gloss to the app's icon on the user's home screen -->
32
+
<preferencename="stay-in-webview"value="false" /> <!-- ios: external links should open in the default browser, 'true' would use the webview the app lives in -->
33
+
<preferencename="ios-statusbarstyle"value="black-opaque" /> <!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
34
+
<preferencename="detect-data-types"value="true" /> <!-- ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system -->
35
+
<preferencename="exit-on-suspend"value="false" /> <!-- ios: if set to true, app will terminate when home button is pressed -->
36
+
<preferencename="show-splash-screen-spinner"value="true" /> <!-- ios: if set to false, the spinner won't appear on the splash screen during app loading -->
37
+
<preferencename="auto-hide-splash-screen"value="true" /> <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
38
+
<preferencename="disable-cursor"value="false" /> <!-- blackberry: prevents a mouse-icon/cursor from being displayed on the app -->
39
+
<preferencename="android-installLocation"value="auto" /> <!-- android: app install location. 'auto' will choose. 'internalOnly' is device memory. 'preferExternal' is SDCard. -->
40
+
41
+
<!-- Plugins -->
42
+
43
+
<!-- Core plugins -->
44
+
45
+
46
+
<!-- Third party plugins -->
47
+
<!-- A list of available plugins are available at https://build.phonegap.com/plugins -->
48
+
49
+
50
+
<!-- Define app icon for each platform. -->
51
+
<iconsrc="icon.png" />
52
+
53
+
<!-- Define app splash screen for each platform. -->
54
+
55
+
<!--
56
+
Define access to external domains.
57
+
<access /> - a blank access tag denies access to all external resources.
0 commit comments