0.0.1 • Published 7 years ago

nativescript-uuid v0.0.1

Weekly downloads
40
License
Apache-2.0
Repository
github
Last release
7 years ago

NativeScript UUID

This is a plugin for Nativescript that allows you to get a UUID (Universal Unique Identifier) for a device.

Inspired from StackOverflow: How to preserve identifierForVendor in ios after uninstalling ios app on device?.

Uses SSKeychain Cocoa Pod.

Installation

tns plugin add nativescript-uuid

Usage

var plugin = require("nativescript-uuid");
var uuid = plugin.getUUID();
console.log("The device UUID is " + uuid);