Config.xml
Config.xml is a global configuration file that controls many aspects of a cordova application's behavior. This platform-agnostic XML file is arranged based on the W3C's Packaged Web Apps (Widgets) specification, and extended to specify core Cordova API features, plugins, and platform-specific settings.
For projects created with the Cordova CLI (described in The Command-Line Interface), this file can be found in the top-level directory:
app/config.xml
Note that before version 3.3.1-0.2.0, the file existed at app/www/config.xml
, and that having it here is still supported.
When using the CLI to build a project, versions of this file are passively copied into various platforms/
subdirectories. For example:
app/platforms/ios/AppName/config.xml
app/platforms/blackberry10/www/config.xml
app/platforms/android/res/xml/config.xml
In addition to the various configuration options detailed below, you can also configure an application's core set of images for each target platform. See Customize icons topic for more information.
Root element of the config.xml document.
Attributes(type) | Description |
---|---|
id(string) | Required Specifies the app's reverse-domain identifier, and the version its full version number expressed in major/minor/patch notation. |
version(string) | Required Full version number expressed in major/minor/patch notation. |
android-versionCode(string) | Android Alternative version for Android. Sets the version code for the application. See the Android guide for information on how this attribute may be modified. |
ios-CFBundleVersion(string) | iOS Alternative version for iOS. For further details, see iOS versioning. |
osx-CFBundleVersion(string) | OS X Alternative version for OS X. For further details, see OS X versioning. |
windows-packageVersion(string) | Windows Alternative version for Windows. For futher details, see Windows versioning |
packageName(string) | Default: Cordova.Example Windows Package name for Windows. |
xmlns(string) | Required Namespace for the config.xml document. |
xmlns:cdv(string) | Required Namespace prefix. |
Examples:
<!-- Android -->
<widget id="io.cordova.hellocordova" version="0.0.1" android-versionCode="0.1.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
</widget>
<!-- iOS -->
<widget id="io.cordova.hellocordova" version="0.0.1" ios-CFBundleVersion="0.1.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
</widget>
<!-- Windows -->
<widget id="io.cordova.hellocordova" version="0.0.1" windows-packageVersion="0.1.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
</widget>
<!-- OS X -->
<widget id="io.cordova.hellocordova" version="0.0.1" osx-CFBundleVersion="0.1.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
</widget>
name
Specifies the app's formal name, as it appears on the device's home screen and within app-store interfaces.
Examples:
<widget ...>
<name>HelloCordova</name>
</widget>
description
Specifies metadata that may appear within app-store listings.
Examples:
<widget ...>
<description>A sample Apache Cordova application</description>
</widget>
author
Specifies contact information that may appear within app-store lisitngs.
Attributes(type) | Description |
---|---|
email(string) | Required Email of the author. |
href(string) | Required Website of the author. |
Examples:
<widget ...>
<author email="dev@cordova.apache.org" href="http://cordova.io"></author>
</widget>
content
Defines the app's starting page in the top-level web assets directory. The default value is index.html, which customarily appears in a project's top-level www
directory.
Attributes(type) | Description |
---|---|
src(string) | Required Defines the app's starting page in the top-level web assets directory. The default value is index.html, which customarily |
appears in a project's top-level www
directory.
Examples:
<widget ...>
<content src="startPage.html"></content>
</widget>
access
Defines the set of external domains the app is allowed to communicate with. The default value shown above allows it to access any server. See the Domain Whitelist Guide for details.
Attributes(type) | Description |
---|---|
origin(string) | Required Defines the set of external domains the app is allowed to communicate with. |
The default value shown above allows it to access any server. See the Domain Whitelist Guide for details.
Examples:
<widget ...>
<access origin="*"></content>
</widget>
<widget ...>
<access origin="http://google.com"></content>
</widget>
allow-navigation
Controls which URLs the WebView itself can be navigated to. Applies to top-level navigations only.
Attributes(type) | Description |
---|---|
href(string) | Required Defines the set of external domains the WebView is allowed to navigate to. |
See the cordova-plugin-whitelist cordova-plugin-whitelist for details.
Examples:
<!-- Allow links to example.com -->
<allow-navigation href="http://example.com/*" />
<!-- Wildcards are allowed for the protocol, as a prefix to the host, or as a suffix to the path -->
<allow-navigation href="*://*.example.com/*" />
allow-intent
Controls which URLs the app is allowed to ask the system to open. By default, no external URLs are allowed.
Attributes(type) | Description |
---|---|
href(string) | Required Defines which URLs the app is allowed to ask the system to open. |
See the cordova-plugin-whitelist cordova-plugin-whitelist for details.
Examples:
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
engine
Specifies details about what platform to restore during a prepare.
Attributes(type) | Description |
---|---|
name(string) | Required Name of the platform to be restored |
spec(string) | Required Details about the platform to be restored. This could be a major.minor.patch version number, a directory containing the platform or a url pointing to a git repository. This information will be used to retrieve the platform code to restore from NPM, a local directory or a git repository. See Platform Spec for further details. |
Examples:
<engine name="android" spec="https://github.com/apache/cordova-android.git#5.1.1" />
<engine name="ios" spec="^4.0.0" />
plugin
Specifies details about what plugin to restore during a prepare.
Attributes(type) | Description |
---|---|
name(string) | Required Name of the plugin to be restored |
spec(string) | Required Details about the plugin to be restored. This could be a major.minor.patch version number, a directory containing the plugin or a url pointing to a git repository. This information will be used to retrieve the plugin code to restore from NPM, a local directory or a git repository. See Plugin Spec for further details. |
Examples:
<plugin name="cordova-plugin-device" spec="^1.1.0" />
<plugin name="cordova-plugin-device" spec="https://github.com/apache/cordova-plugin-device.git#1.0.0" />
preference
Sets various options as pairs of name/value attributes. Each preference's name is case-insensitive. Many preferences are unique to specific platforms, and will be indicated as such.
Attributes(type) | Description |
---|---|
AllowInlineMediaPlayback(boolean) | Default: false iOS Set to true to allow HTML5 media playback to appear inline within the screen layout, using browser-supplied controls rather than native controls. For this to work, add the webkit-playsinline attribute to any <video> elements. |
AndroidLaunchMode(string) | Default: singleTop Allowed values: standard, singleTop, singleTask, singleInstance Android Sets the Activity android:launchMode attribute. This changes what happens when the app is launched from app icon or intent and is already running. |
android-maxSdkVersion(integer) | Default: Not Specified Android Sets the maxSdkVersion attribute of the <uses-sdk> tag in the project's AndroidManifest.xml (see here). |
android-minSdkVersion(integer) | Default: Dependent on cordova-android Version Android Sets the minSdkVersion attribute of the <uses-sdk> tag in the project's AndroidManifest.xml (see here). |
android-targetSdkVersion(integer) | Default: Dependent on cordova-android Version Android Sets the targetSdkVersion attribute of the <uses-sdk> tag in the project's AndroidManifest.xml (see here). |
AppendUserAgent(string) | Android iOS If set, the value will append to the end of old UserAgent of webview. When using with OverrideUserAgent, this value will be ignored. |
BackgroundColor(string) | Android BlackBerry Windows Sets the app's background color. Supports a four-byte hex value, with the first byte representing the alpha channel, and standard RGB values for the following three bytes. For Windows, the alpha channel is ignored. Note: transparent value will set the application tile background to the accent color on Windows. |
BackupWebStorage(string) | Default: cloud Allowed values: none, local, cloud. iOS Set to cloud to allow web storage data to backup via iCloud. Set to local to allow only local backups via iTunes sync. Set to none prevent web storage backups. |
ChildBrowser(string) | Default: enable BlackBerry Disables child browser windows. By default, apps launch a secondary browser window to display resources accessed via window.open() or by specifying a _blank anchor target. Specify disable to override this default behavior. |
CordovaWebViewEngine(string) | Default: CDVUIWebViewEngine iOS This sets the WebView engine plugin to be used to render the host app. The plugin must conform to the CDVWebViewEngineProtocol protocol. The 'value' here should match the 'feature' name of the WebView engine plugin that is installed. This preference usually would be set by the WebView engine plugin that is installed, automatically. |
DefaultVolumeStream(string) | Default: default Android Added in cordova-android 3.7.0, This preference sets which volume the hardware volume buttons link to. By default this is "call" for phones and "media" for tablets. Set this to "media" to have your app's volume buttons always change the media volume. Note that when using Cordova's media plugin, the volume buttons will dynamically change to controlling the media volume when any Media objects are active. |
DisallowOverscroll(boolean) | Default: false iOS Android Set to true if you don't want the interface to display any feedback when users scroll past the beginning or end of content. On iOS, overscroll gestures cause content to bounce back to its original position. on Android, they produce a more subtle glowing effect along the top or bottom edge of the content. |
EnableViewportScale(boolean) | Default: false iOS Set to true to allow a viewport meta tag to either disable or restrict the range of user scaling, which is enabled by default. Place a viewport such as the following in the HTML to disable scaling and fit content flexibly within the rendering WebView: <meta name='viewport' content='width=device-width, initial-scale=1, user-scalable=no' /> |
EnableWebGL(boolean) | Default: false OS X 4.0.0 Set to true to enable WebGL on the web view. |
ErrorUrl(URL) | Default: null Android If set, will display the referenced page upon an error in the application instead of a dialog with the title "Application Error". |
ErrorUrl(string) | iOS If set, will display the referenced local page upon an error in the application. |
FullScreen(boolean) | Default: false Android Allows you to hide the status bar at the top of the screen. Note: Recommended platform-agnostic way to achieve this is to use the StatusBar plugin. |
GapBetweenPages(float) | Default: 0 iOS The size of the gap, in points, between pages. |
HideKeyboardFormAccessoryBar(boolean) | Default: false BlackBerry Set to true to hide the additional toolbar that appears above the keyboard, helping users navigate from one form input to another. |
HideMousePointer(integer) | Default: -1 OS X 4.0.0 Sets the timeout for hiding the mouse pointer. Set to 0 for immediate, set to -1 for never. |
InAppBrowserStorageEnabled (boolean) | Default: true Android Controls whether pages opened within an InAppBrowser can access the same localStorage and WebSQL storage as pages opened with the default browser. |
KeepRunning(boolean) | Default: true Android Determines whether the application stays running in the background even after a pause event fires. Setting this to false does not kill the app after a pause event, but simply halts execution of code within the cordova webview while the app is in the background. |
KeyboardDisplayRequiresUserAction(boolean) | Default: true iOS Set to false to allow the keyboard to appear when calling focus() on form inputs. |
LoadUrlTimeoutValue(number in milliseconds) | Default: 20000, 20 seconds Android When loading a page, the amount of time to wait before throwing a timeout error. |
LoadingDialog(string) | Default: null Android If set, displays a dialog with the specified title and message, and a spinner, when loading the first page of an application. The title and message are separated by a comma in this value string, and that comma is removed before the dialog is displayed. |
LogLevel(string) | Default: ERROR Allowed values: ERROR, WARN, INFO, DEBUG, VERBOSE Android Sets the minimum log level through which log messages from your application will be filtered. |
MediaPlaybackAllowsAirPlay(boolean) | Default: true iOS Set to false to prevent Air Play from being used in this view. Available in default UIWebView and WKWebView. |
MediaPlaybackRequiresUserAction(boolean) | Default: false iOS Set to true to prevent HTML5 videos or audios from playing automatically with the autoplay attribute or via JavaScript. |
Min/Max Version(Regex) | Windows Allowed values: /(Microsoft.+? | Windows.+?)-(MinVersion | MaxVersionTested)/i Identifies the ecosystems and their min/max versions the app is compatible with. There are three parts to each value: the SDK, the version restriction, and the version value. These preferences are detected by beginning with Windows or Microsoft and ending in -MinVersion or -MaxVersionTested :
Note: These preferences are only set in the appxmanifest files of the desired target-platform and not in the jsproj files. |
Orientation(string) | Default: default Allowed values: default, landscape, portait Allows you to lock orientation and prevent the interface from rotating in response to changes in orientation. NOTE: The default value means Cordova will strip the orientation preference entry from the platform's manifest/configuration file allowing the platform to fallback to its default behavior. For iOS, to specify both portrait & landscape mode you would use the platform specific value 'all'. |
OSXLocalStoragePath(string) | OS X 4.0.0 Default: ~/Library/Application Support/{bundle.id} Sets the directory for the local storage path. |
OverrideUserAgent(string) | Android If set, the value will replace the old UserAgent of webview. It is helpful to identify the request from app/browser when requesting remote pages. Use with caution, this may causes compitiable issue with web servers. For most cases, use AppendUserAgent instead. |
PageLength(float) | Default: 0 iOS The size of each page, in points, in the direction that the pages flow. When PaginationMode is right to left or left to right, this property represents the width of each page. When PaginationMode is topToBottom or bottomToTop, this property represents the height of each page. The default value is 0, which means the layout uses the size of the viewport to determine the dimensions of the page. |
PaginationBreakingMode(string) | Default: page Allowed values: page, column iOS Valid values are page and column.The manner in which column- or page-breaking occurs. This property determines whether certain CSS properties regarding column- and page-breaking are honored or ignored. When this property is set to column, the content respects the CSS properties related to column-breaking in place of page-breaking. |
PaginationMode(string) | Default: unpaginated Allowed values: unpaginated, leftToRight, topToBottom, bottomToTop, rightToLeft iOS This property determines whether content in the web view is broken up into pages that fill the view one screen at a time,or shown as one long scrolling view. If set to a paginated form, this property toggles a paginated layout on the content, causing the web view to use the values of PageLength and GapBetweenPages to relayout its content. |
PopupBlocker(string) | Default: enable BlackBerry Enables the popup blocker, which prevents calls to window.open(). By default, popups display in a child browser window. Setting the preference to enable prevents it from displaying at all. |
SetFullscreen(boolean) | Default: false Android Same as the Fullscreen parameter in the global configuration of this xml file. This Android-specific element is deprecated in favor of the global Fullscreen element, and will be removed in a future version. |
ShowTitle(boolean) | Default: false Android Show the title at the top of the screen. |
SplashScreenBackgroundColor | Default: #464646 Windows Sets the splashscreen background color. Supports a CSS color name or a four-byte hex value, with the first byte representing the alpha channel, and standard RGB values for the following three bytes. The alpha channel is ignored although transparent value will cause black/white background color in case of Dark/Light theme accordingly. |
Suppresses3DTouchGesture(boolean) | Default: false iOS Set to true to avoid 3D Touch capable iOS devices rendering a magnifying glass widget when the user applies force while longpressing the webview. Test your app thoroughly since this disables onclick handlers, but plays nice with ontouchend. If this setting is true, SuppressesLongPressGesture will effectively be true as well. |
SuppressesIncrementalRendering(boolean) | Default: false iOS Set to true to wait until all content has been received before it renders to the screen. |
SuppressesLongPressGesture(boolean) | Default: false iOS Set to true to avoid iOS9+ rendering a magnifying glass widget when the user longpresses the webview. Test your app thoroughly since this may interfere with text selection capabilities. |
TopActivityIndicator(string) | Default: gray Allowed values: whiteLarge, white, gray. iOS Controls the appearance of the small spinning icon in the status bar that indicates significant processor activity. |
uap-target-min-version(string) | Windows This property sets the MinTargetVersion for the Windows UAP. If not specified, this is set to the initial release version 10.0.10240.0 Note: This preference is set in the jsproj file and not in the appxmanifest file. So users with OS version lower than this value would not be able to run the app. |
UIWebViewDecelerationSpeed(string) | Default: normal Allowed values: normal, fast iOS This property controls the deceleration speed of momentum scrolling. normal is the default speed for most native apps, and fast is the default for Mobile Safari. |
WebSecurity(string) | Default: enable BlackBerry Set to disable to override web security settings, allowing access to remote content from unknown sources. This preference is intended as a development convenience only, so remove it before packaging the app for distribution. For the released app, all URIs should be known and whitelisted using the element, described in the Domain Whitelist Guide. |
WindowSize(string) | Default: auto OS X 4.0.0 Sets the size of the application window. Accepts the format WxH for a specific width and height or the special values auto and fullscreen . The latter will open a borderless window spanning the entire desktop area. Please note, that this is different from the normal OS X fullscreen mode, which would never span multiple displays.Note: The global cordova fullscreen preference has no effect in OS X. |
WindowsDefaultUriPrefix(string) | Windows Allowed values: ms-appx:// , ms-appx-web:// Identifies whether you want your app to target the local context or remote context as its startup URI. When building for Windows 10, the default is the remote context ( ms-appx-web:// ).In order to have a local-mode application that is not impacted by Remote Mode capability restrictions, you must set this preference to ms-appx:// and not declare any <access> elements with remote URIs. The local mode is the default for Windows 8.1 |
WindowsStoreDisplayName(string) | Windows A friendly name for the publisher that can be displayed to users. |
WindowsStoreIdentityName(string) | Windows Identity name used for Windows store. The identity defines a globally unique identifier for a package. A package identity is represented as a tuple of attributes of the package. See the identity page on the package manifest schema reference for further details. |
WindowsStorePublisherName(string) | Windows Publisher Display Name. |
WindowsToastCapable(boolean) | Default: false Windows A value of true indicates that the app is allowed to provide 'toast notifications'. |
deployment-target(string) | iOS This sets the IPHONEOSDEPLOYMENTTARGET in the build, which ultimately tranlsates to the MinimumOSVersion in the ipa. For more details please refer to Apple's documentation on Deployment Target Settings |
target-device(string) | Default: universal Allowed values: handset, tablet, universal iOS This property maps directly to TARGETEDDEVICEFAMILY in the xcode project. Note that if you target universal (which is the default) you will need to supply screen shots for both iPhone and iPad or your app may be rejected. |
windows-phone-target-version(string) | Windows Sets the version of Windows Phone for which the package (resulting from cordova build ) will target. If none is specified, it will be set to the same version as windows-target-version (if found). |
windows-target-version(string) | Windows Sets the version of Windows for which the package (resulting from cordova build ) will target. If none is specified, it will be set to '8.1'. |
Examples:
<preference name="DisallowOverscroll" value="true"/>
<preference name="Fullscreen" value="true" />
<preference name="BackgroundColor" value="0xff0000ff"/>
<preference name="HideKeyboardFormAccessoryBar" value="true"/>
<preference name="Orientation" value="landscape" />
<!-- iOS only preferences -->
<preference name="EnableViewportScale" value="true"/>
<preference name="MediaPlaybackAllowsAirPlay" value="false"/>
<preference name="MediaPlaybackRequiresUserAction" value="true"/>
<preference name="AllowInlineMediaPlayback" value="true"/>
<preference name="BackupWebStorage" value="local"/>
<preference name="TopActivityIndicator" value="white"/>
<preference name="SuppressesIncrementalRendering" value="true"/>
<preference name="GapBetweenPages" value="0"/>
<preference name="PageLength" value="0"/>
<preference name="PaginationBreakingMode" value="page"/>
<preference name="PaginationMode" value="unpaginated"/>
<preference name="UIWebViewDecelerationSpeed" value="fast" />
<preference name="ErrorUrl" value="myErrorPage.html"/>
<preference name="OverrideUserAgent" value="Mozilla/5.0 My Browser" />
<preference name="AppendUserAgent" value="My Browser" />
<preference name="target-device" value="universal" />
<preference name="deployment-target" value="7.0" />
<preference name="CordovaWebViewEngine" value="CDVUIWebViewEngine" />
<preference name="SuppressesLongPressGesture" value="true" />
<preference name="Suppresses3DTouchGesture" value="true" />
<!-- Android only preferences -->
<preference name="KeepRunning" value="false"/>
<preference name="LoadUrlTimeoutValue" value="10000"/>
<preference name="InAppBrowserStorageEnabled" value="true"/>
<preference name="LoadingDialog" value="My Title,My Message"/>
<preference name="ErrorUrl" value="myErrorPage.html"/>
<preference name="ShowTitle" value="true"/>
<preference name="LogLevel" value="VERBOSE"/>
<preference name="AndroidLaunchMode" value="singleTop"/>
<preference name="DefaultVolumeStream" value="call" />
<preference name="OverrideUserAgent" value="Mozilla/5.0 My Browser" />
<preference name="AppendUserAgent" value="My Browser" />
<!-- Windows only preferences -->
<preference name="windows-phone-target-version" value="8.1" />
<preference name="windows-target-version" value="8.1" />
<preference name="Windows.Universal" value="10.0.10240.0" />
<preference name="WindowsDefaultUriPrefix" value="ms-appx://"" />
<preference name="Windows.Mobile-MaxVersionTested" value="10.0.10031.0" />
<preference name="Windows.Universal-MinVersion" value="10.0.0.0" />
<preference name="WindowsStoreIdentityName" value="Cordova.Example.ApplicationDataSample" />
<preference name="WindowsStorePublisherName" value="CN=Contoso Corp, O=Contoso Corp, L=Redmond, S=Washington, C=US" />
<preference name="WindowsToastCapable" value="true" />
<preference name="uap-target-min-version" value="10.0.10586.0" />
<!-- BlackBerry only preferences -->
<preference name="ChildBrowser" value="disable"/>
<preference name="PopupBlocker" value="enable"/>
<preference name="WebSecurity" value="disable"/>
<!-- OS X only preferences -->
<preference name="HideMousePointer" value="5"/>
<preference name="OSXLocalStoragePath" value="~/.myapp/database"/>
<preference name="WindowSize" value="800x400"/>
<preference name="EnableWebGL" value="true"/>
feature
If you use the CLI to build applications, you use the plugin command to enable device APIs. This does not modify the top-level config.xml file, so the element does not apply to your workflow. If you work directly in an SDK and using the platform-specific config.xml file as source, you use the tag to enable device-level APIs and external plugins. They often appear with custom values in platform-specific config.xml files. See the API Reference for details on how to specify each feature. See the Plugin Development Guide for more information on plugins. NOTE: Most of the time, you do NOT want to set this directly.
Attributes(type) | Description |
---|---|
name(string) | Required The name of the plugin to enable. |
param
Used to specify what certain plugin parameters such as: what package to retrieve the plugin code from, and whether the plugin code is to be initialized during the Webview's initialization.
Attributes(type) | Description |
---|---|
name(string) | Required Allowed values: android-package, ios-package, osx-package, onload. iOS OS X Android 'ios-package', 'osx-package' and 'android-package' are used to specify the name of the package (as specified by the 'value' attribute) to be used to initialize the plugin code, while 'onload' is used to specify whether the corresponding plugin (as specified in the 'value' attribute) is to be instantiated when the controller is initialized. |
value(string or boolean) | Required iOS OS X Android Specifies the name of the package to be used to initialize the plugin code (when the 'name' attribute is android-package, ios-package or osx-package), specifies the name of the plugin to be loaded during controller initialization (when 'name' attribute is set to 'onload'). |
Examples:
<!-- Here is how to specify the Device API for Android projects -->
<feature name="Device">
<param name="android-package" value="org.apache.cordova.device.Device" />
</feature>
<!-- Here's how the element appears for iOS projects -->
<feature name="Device">
<param name="ios-package" value="CDVDevice" />
<param name="onload" value="true" />
</feature>
<!-- Here's how the element appears for OS X projects -->
<feature name="Device">
<param name="osx-package" value="CDVDevice" />
<param name="onload" value="true" />
</feature>
platform
When using the CLI to build applications, it is sometimes necessary to specify preferences or other elements specific to a particular platform. Use the element to specify configuration that should only appear in a single platform-specific config.xml file.
Attributes(type) | Description |
---|---|
name(string) | Required The platform whose preferences are being defined. |
Examples:
<platform name="android">
<preference name="Fullscreen" value="true" />
</platform>
hook
Represents your custom script which will be called by Cordova when certain action occurs (for example, after plugin is added or platform prepare logic is invoked). This is useful when you need to extend default Cordova functionality. See Hooks Guide for more information.
Attributes(type) | Description |
---|---|
type(string) | Required Specifies the action during which the custom script is to be called. |
src(string) | Required Specifies the location of the script to be called when a specific action occurs. |
Examples:
<hook type="after_plugin_install" src="scripts/afterPluginInstall.js" />
Below is a sample config.xml file:
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.hellocordova" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloCordova</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<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:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>