Post
peachbitcoin hi. i'm curious. on an iphone, which unique identifier are you using? on android i guess you are using the SSAID, right? but on iphones afaik the IDFV changes when every app from the same developer is uninstalled and then reinstalled. so this can't be the identifier you are using. and the identifier for advertisers (IDFA) is nullified on the affected device. thanks in advance for your response
0
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.
0
0