Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-10T21:53:38.000Z (almost 9 years ago)
- Last Synced: 2024-08-28T21:17:00.755Z (4 months ago)
- Language: Objective-C
- Homepage:
- Size: 28.3 KB
- Stars: 169
- Watchers: 16
- Forks: 96
- 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);
};