|
16 | 16 | PhoneGap Team
|
17 | 17 | </author>
|
18 | 18 |
|
19 |
| - <!-- |
20 |
| - Enable individual API permissions here. |
21 |
| - The "device" permission is required for the 'deviceready' event. |
22 |
| - --> |
23 |
| - <feature name="http://api.phonegap.com/1.0/device" /> |
24 |
| - |
25 | 19 | <!--
|
26 | 20 | If you do not want any permissions to be added to your app, add the
|
27 | 21 | following tag to your config.xml; you will still have the INTERNET
|
|
30 | 24 | <preference name="permissions" value="none"/>
|
31 | 25 |
|
32 | 26 | <!-- Customize your app and platform with the preference element. -->
|
33 |
| - <preference name="phonegap-version" value="2.9.0" /> <!-- all: current version of PhoneGap --> |
| 27 | + <preference name="phonegap-version" value="3.1.0" /> <!-- all: current version of PhoneGap --> |
34 | 28 | <preference name="orientation" value="default" /> <!-- all: default means both landscape and portrait are enabled -->
|
35 | 29 | <preference name="target-device" value="universal" /> <!-- all: possible values handset, tablet, or universal -->
|
36 | 30 | <preference name="fullscreen" value="true" /> <!-- all: hides the status bar at the top of the screen -->
|
37 |
| - <preference name="webviewbounce" value="true" /> <!-- ios: control whether the screen 'bounces' when scrolled beyond the top --> |
38 | 31 | <preference name="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 -->
|
39 |
| - <preference name="stay-in-webview" value="false" /> <!-- ios: external links should open in the default browser, 'true' would use the webview the app lives in --> |
40 | 32 | <preference name="ios-statusbarstyle" value="black-opaque" /> <!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
|
41 | 33 | <preference name="detect-data-types" value="true" /> <!-- ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system -->
|
42 | 34 | <preference name="exit-on-suspend" value="false" /> <!-- ios: if set to true, app will terminate when home button is pressed -->
|
43 |
| - <preference name="show-splash-screen-spinner" value="true" /> <!-- ios: if set to false, the spinner won't appear on the splash screen during app loading --> |
44 | 35 | <preference name="auto-hide-splash-screen" value="true" /> <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
|
45 | 36 | <preference name="disable-cursor" value="false" /> <!-- blackberry: prevents a mouse-icon/cursor from being displayed on the app -->
|
46 | 37 | <preference name="android-minSdkVersion" value="7" /> <!-- android: MIN SDK version supported on the target device. MAX version is blank by default. -->
|
47 | 38 | <preference name="android-installLocation" value="auto" /> <!-- android: app install location. 'auto' will choose. 'internalOnly' is device memory. 'preferExternal' is SDCard. -->
|
48 | 39 |
|
49 |
| - <!-- Plugins can also be added here. --> |
50 |
| - <!-- |
51 |
| - <gap:plugin name="Example" /> |
52 |
| - A list of available plugins are available at https://build.phonegap.com/docs/plugins |
| 40 | + <!-- Plugins --> |
| 41 | + |
| 42 | + <!-- Core plugins --> |
| 43 | + <gap:plugin name="org.apache.cordova.battery-status" /> |
| 44 | + <gap:plugin name="org.apache.cordova.camera" /> |
| 45 | + <gap:plugin name="org.apache.cordova.media-capture" /> |
| 46 | + <gap:plugin name="org.apache.cordova.console" /> |
| 47 | + <gap:plugin name="org.apache.cordova.contacts" /> |
| 48 | + <gap:plugin name="org.apache.cordova.device" /> |
| 49 | + <gap:plugin name="org.apache.cordova.device-motion" /> |
| 50 | + <gap:plugin name="org.apache.cordova.device-orientation" /> |
| 51 | + <gap:plugin name="org.apache.cordova.dialogs" /> |
| 52 | + <gap:plugin name="org.apache.cordova.file" /> |
| 53 | + <gap:plugin name="org.apache.cordova.file-transfer" /> |
| 54 | + <gap:plugin name="org.apache.cordova.geolocation" /> |
| 55 | + <gap:plugin name="org.apache.cordova.globalization" /> |
| 56 | + <gap:plugin name="org.apache.cordova.inappbrowser" /> |
| 57 | + <gap:plugin name="org.apache.cordova.media" /> |
| 58 | + <gap:plugin name="org.apache.cordova.network-information" /> |
| 59 | + <gap:plugin name="org.apache.cordova.splashscreen" /> |
| 60 | + <gap:plugin name="org.apache.cordova.vibration" /> |
| 61 | + |
| 62 | + <!-- Third party plugins --> |
| 63 | + <!-- A list of available plugins are available at https://build.phonegap.com/plugins --> |
| 64 | + <!-- |
| 65 | + <gap:plugin name="com.phonegap.plugins.barcodescanner" /> |
53 | 66 | -->
|
54 | 67 |
|
55 | 68 | <!-- Define app icon for each platform. -->
|
|
92 | 105 | <!--
|
93 | 106 | <access origin="http://phonegap.com" /> - allow any secure requests to http://phonegap.com/
|
94 | 107 | <access origin="http://phonegap.com" subdomains="true" /> - same as above, but including subdomains, such as http://build.phonegap.com/
|
95 |
| - <access origin="http://phonegap.com" browserOnly="true" /> - only allows http://phonegap.com to be opened by the child browser. |
96 | 108 | -->
|
97 | 109 |
|
98 | 110 | </widget>
|
0 commit comments