All Projects → apache → Cordova Plugin Device

apache / Cordova Plugin Device

Licence: apache-2.0
Apache Cordova Plugin device

Programming Languages

javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language
csharp
926 projects
cplusplus
227 projects

Projects that are alternatives of or similar to Cordova Plugin Device

Cordova Plugin Contacts
Apache Cordova Plugin contacts
Stars: ✭ 203 (-37.92%)
Mutual labels:  library, mobile, cordova
Cordova Plugins
Apache Cordova
Stars: ✭ 242 (-25.99%)
Mutual labels:  library, mobile, cordova
Cordova App Harness
[DEPRECATED] Apache Cordova app harness
Stars: ✭ 49 (-85.02%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Console
[DEPRECATED] Apache Cordova Plugin console
Stars: ✭ 145 (-55.66%)
Mutual labels:  library, mobile, cordova
Framework7
Full featured HTML framework for building iOS & Android apps
Stars: ✭ 16,560 (+4964.22%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Screen Orientation
Cordova Plugin Screen Orientation
Stars: ✭ 181 (-44.65%)
Mutual labels:  library, mobile, cordova
Cordova Osx
Apache Cordova mac
Stars: ✭ 232 (-29.05%)
Mutual labels:  library, mobile, cordova
Cordova Firefoxos
[DEPRECATED] Apache Cordova firefoxos
Stars: ✭ 41 (-87.46%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Media Capture
Apache Cordova Plugin media-capture
Stars: ✭ 271 (-17.13%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Test Framework
Apache Cordova
Stars: ✭ 66 (-79.82%)
Mutual labels:  library, mobile, cordova
Cordova Browser
Apache Cordova
Stars: ✭ 142 (-56.57%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Dialogs
Apache Cordova Plugin dialogs
Stars: ✭ 267 (-18.35%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Globalization
Apache Cordova Plugin globalization
Stars: ✭ 131 (-59.94%)
Mutual labels:  library, mobile, cordova
Cordova Windows
Apache Cordova Windows
Stars: ✭ 188 (-42.51%)
Mutual labels:  library, mobile, cordova
Cordova Node Xcode
Apache cordova
Stars: ✭ 128 (-60.86%)
Mutual labels:  library, mobile, cordova
Cordova Mobile Spec
Apache Cordova mobile-spec
Stars: ✭ 57 (-82.57%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Camera
Apache Cordova Plugin camera
Stars: ✭ 879 (+168.81%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Inappbrowser
Apache Cordova Plugin inappbrowser
Stars: ✭ 994 (+203.98%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Device Motion
Apache Cordova Plugin device-motion
Stars: ✭ 58 (-82.26%)
Mutual labels:  library, mobile, cordova
Cordova Plugin Vibration
Apache Cordova Plugin vibration
Stars: ✭ 109 (-66.67%)
Mutual labels:  library, mobile, cordova

title: Device description: Get device information.

AppVeyor Travis CI
Build status Build Status

cordova-plugin-device

This plugin defines a global device object, which describes the device's hardware and software. Although the object is in the global scope, it is not available until after the deviceready event.

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
    console.log(device.cordova);
}

Installation

cordova plugin add cordova-plugin-device

Properties

  • device.cordova
  • device.model
  • device.platform
  • device.uuid
  • device.version
  • device.manufacturer
  • device.isVirtual
  • device.serial

device.cordova

Get the version of Cordova running on the device.

Supported Platforms

  • Android
  • Browser
  • iOS
  • Windows
  • OSX

device.model

The device.model returns the name of the device's model or product. The value is set by the device manufacturer and may be different across versions of the same product.

Supported Platforms

  • Android
  • Browser
  • iOS
  • Windows
  • OSX

Quick Example

// Android:    Nexus One       returns "Passion" (Nexus One code name)
//             Motorola Droid  returns "voles"
// BlackBerry: Torch 9800      returns "9800"
// Browser:    Google Chrome   returns "Chrome"
//             Safari          returns "Safari"
// iOS:     for the iPad Mini, returns iPad2,5; iPhone 5 is iPhone 5,1. See http://theiphonewiki.com/wiki/index.php?title=Models
// OSX:                        returns "x86_64"
//
var model = device.model;

Android Quirks

  • Gets the product name instead of the model name, which is often the production code name. For example, the Nexus One returns Passion, and Motorola Droid returns voles.

device.platform

Get the device's operating system name.

var string = device.platform;

Supported Platforms

  • Android
  • Browser
  • iOS
  • Windows
  • OSX

Quick Example

// Depending on the device, a few examples are:
//   - "Android"
//   - "BlackBerry 10"
//   - "browser"
//   - "iOS"
//   - "WinCE"
//   - "Tizen"
//   - "Mac OS X"
var devicePlatform = device.platform;

device.uuid

Get the device's Universally Unique Identifier (UUID).

var string = device.uuid;

Description

The details of how a UUID is generated are determined by the device manufacturer and are specific to the device's platform or model.

Supported Platforms

  • Android
  • iOS
  • Windows
  • OSX

Quick Example

// Android: Returns a random 64-bit integer (as a string, again!)
//          The integer is generated on the device's first boot
//
// BlackBerry: Returns the PIN number of the device
//             This is a nine-digit unique integer (as a string, though!)
//
// iPhone: (Paraphrased from the UIDevice Class documentation)
//         Returns the [UIDevice identifierForVendor] UUID which is unique and the same for all apps installed by the same vendor. However the UUID can be different if the user deletes all apps from the vendor and then reinstalls it.
// Windows Phone 7 : Returns a hash of device+current user,
// if the user is not defined, a guid is generated and will persist until the app is uninstalled
// Tizen: returns the device IMEI (International Mobile Equipment Identity or IMEI is a number
// unique to every GSM and UMTS mobile phone.
var deviceID = device.uuid;

iOS Quirk

The uuid on iOS uses the identifierForVendor property. It is unique to the device across the same vendor, but will be different for different vendors and will change if all apps from the vendor are deleted and then reinstalled. Refer here for details. The UUID will be the same if app is restored from a backup or iCloud as it is saved in preferences. Users using older versions of this plugin will still receive the same previous UUID generated by another means as it will be retrieved from preferences.

OSX Quirk

The uuid on OSX is generated automatically if it does not exist yet and is stored in the standardUserDefaults in the CDVUUID property.

device.version

Get the operating system version.

var string = device.version;

Supported Platforms

  • Android 2.1+
  • Browser
  • iOS
  • Windows
  • OSX

Quick Example

// Android:    Froyo OS would return "2.2"
//             Eclair OS would return "2.1", "2.0.1", or "2.0"
//             Version can also return update level "2.1-update1"
//
// BlackBerry: Torch 9800 using OS 6.0 would return "6.0.0.600"
//
// Browser:    Returns version number for the browser
//
// iPhone:     iOS 3.2 returns "3.2"
//
// Windows Phone 7: returns current OS version number, ex. on Mango returns 7.10.7720
// Windows 8: return the current OS version, ex on Windows 8.1 returns 6.3.9600.16384
// Tizen: returns "TIZEN_20120425_2"
// OSX:        El Capitan would return "10.11.2"
//
var deviceVersion = device.version;

device.manufacturer

Get the device's manufacturer.

var string = device.manufacturer;

Supported Platforms

  • Android
  • iOS
  • Windows

Quick Example

// Android:    Motorola XT1032 would return "motorola"
// BlackBerry: returns "BlackBerry"
// iPhone:     returns "Apple"
//
var deviceManufacturer = device.manufacturer;

device.isVirtual

whether the device is running on a simulator.

var isSim = device.isVirtual;

Supported Platforms

  • Android 2.1+
  • Browser
  • iOS
  • Windows
  • OSX

OSX and Browser Quirk

The isVirtual property on OS X and Browser always returns false.

device.serial

Get the device hardware serial number (SERIAL).

var string = device.serial;

Supported Platforms

  • Android
  • OSX
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].