Skip to content

2.0.0

Choose a tag to compare

@jonghoon023 jonghoon023 released this 15 Apr 10:43
· 12 commits to main since this release
  • Breaking Change: getUniqueIdentifier() has been converted to a static method.
    • You can now call it directly without creating an instance:
      final deviceId = await UniqueDeviceIdentifier.getUniqueIdentifier();
    • This change simplifies usage but breaks compatibility with the previous instance-based approach:
      // ❌ This will no longer work:
      final deviceId = await UniqueDeviceIdentifier().getUniqueIdentifier();