Skip to content

A flutter plugin for getting the unique serial number for android and identifierForVendor in ios

License

Notifications You must be signed in to change notification settings

ashishislive/unique_identifier

 
 

Repository files navigation

Flutter Search Panel

pub package

A Flutter plugin to get the ANDROID_ID for android and identifierForVendor for iOS platforms.

Installing

dependencies:
  unique_identifier: ^0.0.3

Import

import 'package:unique_identifier/unique_identifier.dart';

How To Use

 dart String _identifier = 'Unknown';
  
 @override
 void initState() {
   super.initState();
   initUniqueIdentifierState();
 }

 Future<void> initUniqueIdentifierState() async {
   String identifier;
   try {
     identifier = await UniqueIdentifier.serial;
   } on PlatformException {
     identifier = 'Failed to get Unique Identifier';
   }

   if (!mounted) return;

   setState(() {
     _identifier = identifier;
   });
 }

 @override
 Widget build(BuildContext context) {
   return new MaterialApp(
     home: new Scaffold(
       appBar: new AppBar(
         title: const Text('Plugin example app'),
       ),
       body: new Center(
         child: new Text('Running on device with id: $_identifier\n'),
       ),
     ),
   );
 }

Bugs & Requests

If you encounter any bugs feel free to open an issue. Raise a ticket on github for suggestions. Pull request are also welcome.

Flutter

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.

License

MIT License

About

A flutter plugin for getting the unique serial number for android and identifierForVendor in ios

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 37.2%
  • Dart 23.6%
  • Java 21.3%
  • Swift 12.6%
  • Objective-C 5.3%