In my unity project I am using SystemInfo.deviceUniqueIdentifier to get the same.
I my flutter project I am using ‘DeviceInfoPlugin’ to get the same:
final DeviceInfoPlugin deviceInfoPlugin = new DeviceInfoPlugin();
AndroidDeviceInfo build = await deviceInfoPlugin.androidInfo;
deviceIdentifier = build.androidId;
However both of them are returning me different ID’s on same devices.
Any suggestions on ho do I obtain a unique ID using Unity or Flutter.