cordova emulate

cordova emulate command Synopsis Alias for cordova run --emulator. Launches the emulator instead of device. See cordova run command docs for more details.

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

cordova help

cordova help command Synopsis Show syntax summary, or the help for a specific command. Syntax cordova help [command] cordova [command] -h cordova -h [command]

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>

Customize Icons

Customize Icons This section shows how to configure an application's icon for various platforms. Documentation about splash screen images can be found in the Cordova-Plugin-Splashscreen documentation Splashscreen plugin docs. Configuring Icons in the CLI When working in the CLI you can define application icon(s) via the <icon> element (config.xml). If you do not specify an icon, the Apache Cordova logo is used. <icon src="res/ios/icon.png" platform="ios" width="57" height="57" density=

BlackBerry 10 Plugins

BlackBerry 10 Plugins This section provides details for how to implement native plugin code on the BlackBerry 10 platform. Before reading this, see Application Plugins for an overview of the plugin's structure and its common JavaScript interface. This section continues to demonstrate the sample echo plugin that communicates from the Cordova webview to the native platform and back. The Echo plugin basically returns whatever string the window.echo function sends from JavaScript: window.echo = fun

startcallbutton

startcallbutton The event fires when the user presses the start call button. If you need to override the default start call behavior you can register an event listener for the startcallbutton event. Quick Example document.addEventListener("startcallbutton", onStartCallKeyDown, false); function onStartCallKeyDown() { // Handle the start call button }

cordova-plugin-device-motion

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-device-motion This plugin provides access to the device's accelerometer. The accelerometer is a motion sensor that detects the change (delta) in movement relative to the current device orientation, in three dimensions along the x, y, and z axis. Access is via a global navigator.accelerometer object. Al