I used to use apples advertising identifier as the Unique device ID key, to keep a track of users device, But with upgrade to iOS 10 and limit ad tracking returning IDFA as 00000000-0000-0000-0000-000000000000, I am unable to maintain the device records, Is there any other replacement which I can use for device id to be stored unique to a user as he signs up.
unable to have a unique ios device, as advertising identifier returned as 00000000-0000-0000-0000-000000000000 after ios 10
2.1k Views Asked by Geet At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in IOS10
- Send a command to Siri
- I can not test my App on my device anymore
- UNNotificationTrigger about fireDate
- MPMediaItemArtwork init(image:) deprecated in iOS 10.0
- Xcode 8.1 Still has Autolayout issue in Storyboard
- Copying files from bundle to Libraries folder (IOS10, Swift3, xcode 8.2)
- Model is running iOS 10.2 (14C92), which may not be supported by this version of Xcode
- unable to have a unique ios device, as advertising identifier returned as 00000000-0000-0000-0000-000000000000 after ios 10
- Run any app in iOS 10+ from command line without jailbreaking
- Local notification does not show custom action button
- Memory leaks when using UIImagePickerController in camera mode
- Custom Controls are not displaying in MobileVLCKit media player
- how to implement multiple local notification not a single notification for swift 3
- How to persist the state in IMessage in ios when user switches from one chat to another
- Siri is recognising phrases from my AppIntentVocabulary.plist, but it's not using the VocabularyItemIdentifier values associated with those phrases
Related Questions in IDFA
- IDFA / ASIdentifierManager not found
- unable to have a unique ios device, as advertising identifier returned as 00000000-0000-0000-0000-000000000000 after ios 10
- How do i enable App install tracking in iOS
- IOS application that uses Facebook SDK, which options should be selected on iTunes Connect IDFA?
- How to collect IDFA for Firebase in modular architecture on iOS 14
- Google Ads For Kids Category Ios
- Apple privacy questions if only using SKAdNetwork and not IDFA for Admob
- Is the requestTrackingAuthorization only needed for IDFA?
- ASIdentifierManager is not found in iOS12
- How to retrieve iPhone IDFA from API?
- iOS IDFA AppsFlyer - Events Won't Log
- IDFA and IDFV on iOS still building with XCode 11
- Prevent abuse of promotion by preventing registration on same device from user
- Track user by IDFA / GAID on a web-site
- Any way to exclude AdSupport class from Xamarin.iOS.dll
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As per my understanding of your requirement your best option is: Identifier for Vendor (IDFV)
Identifier for Vendor (IDFV) change when all apps from the same vendor are removed. If the vendor has only one app means this ID can change if you uninstall and reinstall app.
Third Part Alternative:
If you are ok with third party solution you can check: FCUUID
With FCUUID you can generate ID with different level of persistence.
If you need more persistence than Identifier for Vendor (IDFV) use uuidForDevice of FCUUID.
You will find a very interesting discussion about different IDs in this post:
I hope you get some help from this information.