1.0.0 • Published 6 years ago

lycwed-cordova-plugin-udid v1.0.0

Weekly downloads
26
License
MIT
Repository
github
Last release
6 years ago

UniqueDeviceID

This cordova plugin provides a unique device identifier. This is to avoid problems when using UUID or other solutions.

Installation

cordova plugin add lycwed-cordova-plugin-udid

Supported Platforms

  • Android
  • iOS
  • Windows Phone 8

Usage

// Get UUID
window.plugins.uniqueDeviceID.get(success, fail);

Success callback function:

function success(uuid)
{
    console.log(uuid);
};