Skip to content
A NativeScript plugin that wraps FCUUID for iOS
Objective-C TypeScript JavaScript CSS Ruby
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
demo
platforms/ios
.gitignore
.npmignore
FCUUID.d.ts
LICENSE
README.md
fcuuid.ios.d.ts
fcuuid.ios.js
fcuuid.ios.ts
index.d.ts
nativescript-fcuuid.sublime-project
package.json
tsconfig.json

README.md

NativeScript-fcuuid

Fill in a little about your plugin!

License

This plugin is licensed under the MITlicense by Rob Laverty

Installation

To install type

tns plugin add nativescript-fcuuid

Usages

Example

import {Observable} from 'data/observable';
declare var FCUUID;

export class HelloWorldModel extends Observable {
	public message: string;

	constructor() {
		super();
		this.message = 'FCUUID: ' + FCUUID.uuidForDevice();
	}
}
You can’t perform that action at this time.