https://github.com/Paldom/UniqueDeviceID
PhoneGap / Cordova unique device id (UUID) plugin for Android, iOS and Windows Phone 8. Remains the same after app uninstall.
https://github.com/Paldom/UniqueDeviceID
Last synced: about 2 months ago
JSON representation
PhoneGap / Cordova unique device id (UUID) plugin for Android, iOS and Windows Phone 8. Remains the same after app uninstall.
- Host: GitHub
- URL: https://github.com/Paldom/UniqueDeviceID
- Owner: Paldom
- License: mit
- Created: 2014-07-31T12:29:03.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-10T21:53:38.000Z (over 9 years ago)
- Last Synced: 2025-08-09T03:44:09.536Z (3 months ago)
- Language: Objective-C
- Homepage:
- Size: 28.3 KB
- Stars: 167
- Watchers: 15
- Forks: 95
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
UniqueDeviceID
==============
PhoneGap / Cordova unique device id (UUID) plugin for Android, iOS and Windows Phone 8. Remains the same after app uninstall.
## Installation
Latest stable release: ```phonegap local plugin add cordova-plugin-uniquedeviceid```
or ```cordova plugin add cordova-plugin-uniquedeviceid```
Current state from git: ```phonegap local plugin add https://github.com/Paldom/UniqueDeviceID.git```
or ```cordova plugin add https://github.com/Paldom/UniqueDeviceID.git```
## Installation - PhoneGap Build
Add following to config.xml: ``````
For older versions, use the following: ``````
or ``````
## 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);
};