native_id 0.0.2 copy "native_id: ^0.0.2" to clipboard
native_id: ^0.0.2 copied to clipboard

outdated

Get unique identifier for android and iOS

NativeId Plugin (Android, iOS) #

Get current device unique id from within the flutter application.

Warning: In android, this plugin use the ANDROID_ID that can be change by user for the rooted device.

Usage #

Import import 'package:native_id/native_id.dart';, instantiate NativeId and use the getId() or getUUID() methods.

Example:

Future<String> getNativeId() async {
    final nativeIdPlugin = NativeId();
    try {
      final nativeId = await nativeIdPlugin.getId();
      return nativeId ?? 'Unknown native id';
    } on PlatformException {
      return 'Failed to get nativeId';
    }
}
4
likes
0
points
479
downloads

Publisher

verified publisherkyawzayartun.com

Weekly Downloads

Get unique identifier for android and iOS

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on native_id