1.3.5 • Published 5 years ago

cordova-plugin-device-name v1.3.5

Weekly downloads
1,461
License
MIT
Repository
github
Last release
5 years ago

Cordova Device Name Plugin

This plugin allows you to get the user-friendly name of the device.

On Android, a bluetooth adapter is required. Android emulator does not have bluetooth capabilities!

CHANGELOG

Installation

In your application project directory:

cordova plugin add cordova-plugin-device-name

Usage

var deviceName = cordova.plugins.deviceName;

console.log(deviceName.name) // e.g: Becvert's iPad

deviceName.get(function success(name) {
    console.log(name);
}, function failure(error) {
    console.log(error);
});

if you installed cordova-plugin-device you can use:

window.device.name

Credits

All the credits go to the official cordova-plugin-device plugin.

Licence

The MIT License