Flutter教程

Unique Device ID

Contents

This plugin produces a unique, cross-install, app-specific device id.

https://github.com/Paldom/UniqueDeviceID

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 唯一标识Unique Device ID插件的安装(Installation)

ionic cordova plugin add cordova-plugin-uniquedeviceid npm install @ionic-native/unique-device-id
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/unique-device-id

Ionic 唯一标识Unique Device ID插件支持的平台(Supported Platforms)

  • Android
  • iOS
  • Windows Phone 8

Ionic 唯一标识Unique Device ID插件的用法(Usage)

import { UniqueDeviceID } from '@ionic-native/unique-device-id/ngx';

constructor(private uniqueDeviceID: UniqueDeviceID) { }

...

this.uniqueDeviceID.get()
  .then((uuid: any) => console.log(uuid))
  .catch((error: any) => console.log(error));