peachbitcoin on Nostr: Android: uniqueID on android is the ANDROID_ID and is derived from a combination of ...
Android: uniqueID on android is the ANDROID_ID and is derived from a combination of app-signing key, user, and device, and will therefore be the same even if the app is reinstalled. The value may only change if a factory reset is performed on the device or if an APK signing key changes.
Example: dd96dec43fb81c97
iOS: This is the identifierForVendor (IDFV) or a random string if IDFV is unavailable. It is an alphanumeric string that uniquely identifies a device to the app’s vendor. Once UID is generated it is stored in iOS Keychain and NSUserDefaults. So it would stay the same even if you delete the app or reset IDFV.
Example: dd96dec43fb81c97
iOS: This is the identifierForVendor (IDFV) or a random string if IDFV is unavailable. It is an alphanumeric string that uniquely identifies a device to the app’s vendor. Once UID is generated it is stored in iOS Keychain and NSUserDefaults. So it would stay the same even if you delete the app or reset IDFV.