cordova-plugin-dialogs

This documentation describes this plugin at version master. Other versions are on GitHub. Android iOS Windows 8.1 Store Windows 8.1 Phone Windows 10 Store Travis CI cordova-plugin-dialogs This plugin provides access to some native dialog UI elements via a global navigator.notification object. Although the object is attached to the global scoped navigator, it is not available until after the deviceready event. document.addEventListener("deviceready", onDeviceReady, false); functi

searchbutton

searchbutton The event fires when the user presses the search button on Android. If you need to override the default search button behavior on Android you can register an event listener for the 'searchbutton' event. Quick Example document.addEventListener("searchbutton", onSearchKeyDown, false); function onSearchKeyDown() { // Handle the search button }

cordova-plugin-contacts

This documentation describes this plugin at version master. Other versions are on GitHub. Android iOS Windows 8.1 Store Windows 8.1 Phone Windows 10 Store Travis CI cordova-plugin-contacts This plugin defines a global navigator.contacts object, which provides access to the device contacts database. Although the object is attached to the global scoped navigator, it is not available until after the deviceready event. document.addEventListener("deviceready", onDeviceReady, false);

cordova-plugin-camera

This documentation describes this plugin at version master. Other versions are on GitHub. Android iOS Windows 8.1 Store Windows 8.1 Phone Windows 10 Store Travis CI cordova-plugin-camera This plugin defines a global navigator.camera object, which provides an API for taking pictures and for choosing images from the system's image library. Although the object is attached to the global scoped navigator, it is not available until after the deviceready event. document.addEventListene

iOS Platform

iOS Platform Guide This guide shows how to set up your SDK development environment to deploy Cordova apps for iOS devices such as iPhone and iPad, and how to optionally use iOS-centered command-line tools in your development workflow. You need to install the SDK tools regardless of whether you want to use these platform-centered shell tools or cross-platform Cordova CLI for development. For a comparison of the two development paths, see the Overview. For details on the CLI, see Cordova CLI Refe

<description>

description Specifies metadata that may appear within app-store listings. Examples: <widget ...> <description>A sample Apache Cordova application</description> </widget>

cordova platform

cordova platform command Synopsis Manage cordova platforms - allowing you to add, remove, update, list and check for updates. Running commands to add or remove platforms affects the contents of the project's platforms directory. Syntax cordova {platform | platforms} [ add <platform-spec> [...] {--save | link=<path> | --fetch } | {remove | rm} platform [...] {--save | --fetch}| {list | ls} | check | save | update ] Sub-command Option Description add <pla

&lt;feature&gt; &lt;param&gt;

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

Ubuntu Platform

Ubuntu Platform Guide This guide shows how to set up a development environment for creating Cordova applications for Ubuntu. You will need an Ubuntu system for building applications, either running natively or in a virtual machine. You will also need an Ubuntu phone for testing your application, though an emulator can be used for basic verifications. Development Platform Requirements Minimum and Recommended Versions Developing Cordova apps requires a system running Ubuntu. The recommended envir

menubutton

menubutton The event fires when the user presses the menu button. Applying an event handler overrides the default menu button behavior. Quick Example document.addEventListener("menubutton", onMenuKeyDown, false); function onMenuKeyDown() { // Handle the back button }