udid
How can I retrieve the UDID on iOS?
Note: Apple will no longer accept apps that access the UDID of a device starting May 1, 2013. Instead, you must use the new methods identifierForVendor and advertisingIdentifier in iOS 6+ for accessing this. See related post here for more detail. Old way (deprecated and will result in App Store rejection) NSString *udid = [[UIDevice … Read more
iOS device UDID
As of macOS Catalina (macOS 10.15), iTunes isn’t available. But you can get the UDID using Finder. Connect your iOS device to your computer and open Finder. You should see your iOS device listed under Locations on the left side of the Finder window. Select your iOS device. Details about your device will appear on … Read more
App rejected, but I don’t use UDID
In My case it was ibGoogleAnalytics_debug.a library. To find which library is using uniqueidentifier method, go to your project folder and type in: $ find . | grep -v .svn | grep “\.a” | grep -v “\.app” | xargs grep uniqueIdentifier I got this: Binary file ./My_Project/libGoogleAnalytics_debug.a matches
Differences between UDID and UUID [duplicate]
UUID (Universally Unique IDentifier) Is on a per-app basis. identifies an app on a device. As long as the user doesn’t completely delete the app, then this identifier will persist between app launches, and at least let you identify the same user using a particular app on a device. Unfortunately, if the user completely deletes … Read more
Can I distribute my App for any device without UDID?
“Private company”. There’s the clue. App store developers can only distribute apps to (up to 100) devices with known UDIDs. That’s the $100 plan most of us have. We can only create signing profiles for ad-hoc distribution to our 100 devices, or for sending to Apple. ([eta:] Or, now, for time-limited distribution to specific AppleIDs … Read more
iOS6 UDID – What advantages does identifierForVendor have over identifierForAdvertising?
Important Note: Apple just released iOS 6.0 and the NDA has been lifted. For developers who preemptively included code that referenced [[UIDevice currentDevice] identifierForAdvertising] this method has NOT been included on iOS 6. If you use the above method, your app will (most likely) crash and be rejected! Instead, Apple has created a new class … Read more
Is there a way since (iOS 7’s release) to get the UDID without using iTunes on a PC/Mac?
Navigate to http://get.udid.io/ from Safari on your iOS device. It works like a charm and requires neither iTunes nor any other computer. No app installed either. EDIT: Also, have a look at Getting a device UDID from .mobileconfig if you (understandably) would rather have this .mobileconfig certificate hosted on a server of yours. MAKE YOUR … Read more