1.0.0 • Published 10 months ago

nativescript-device-uuid v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

NativeScript UUID

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

Uses SAMKeychain Cocoa Pod.

Installation

Run the following command from the root of your project:

yarn add nativescript-device-uuid
ns plugin add nativescript-device-uuid
npm install nativescript-device-uuid

Usage

JavaScript

  const nsUuid = require("nativescript-device-uuid");

  const uuid = nsUuid.getUUID();
  console.log(`The device UUID is ${uuid}`);

TypeScript

  import { getUUID } from 'nativescript-device-uuid';

  const uuid = getUUID();
  console.log(`The device UUID is ${uuid}`);