udid

Has anyone had their iOS App rejected by Apple for using the devices UDID?

二次信任 提交于 2019-11-29 10:06:44
问题 I have heard some rumours that Apple is rejecting apps for using the iOS5 deprecated method [UIDevice uniqueIdentifier] . Can anyone confirm that they have had their App rejected for this reason? I know of the alternatives to using this deprecated method, but one of our customers is requesting we use a 3rd party library that we know uses this method. I would be surprised if this is the case as the API method has been deprecated and not made private. 回答1: Apple is not rejecting apps because of

How to generate Unique ID of device for iPhone/iPad using Objective-c

放肆的年华 提交于 2019-11-29 09:27:40
问题 I wanted to know that How to generate Unique ID of device for iPhone/iPad using Objective-c so that once application is installed on device , so we should track that deviceID I have searched to retrieve IMEI of iPhone/iPad , but it is not allowed in objective-c. Then I searched to generate UDID of iPhone/iPad but it is generating for different ID each time I launched it on simulator . 回答1: Yes, UDID is deprecated; we are not allowed to get UDID due to user privacy purposes. Apple does not

How to get Apple Watch Unique id or UDID?

风格不统一 提交于 2019-11-29 09:09:22
I want to get Apple Watch unique id. Is there anything available like UDID or unique identifier for developers? There should be a way with Xcode 8...but I can't find it. My solution for now: launch "Accessibility Inspector", click "Start inspection follow point" button (the one in the middle, kind of cross-hairs), click in Xcode on top of the UDID value and then copy the UDID from the inspector shown values. David It turns out you also have to add the UDID of the Apple Watch to the Apple Developer Portal, and update your Development provisioning profile to include this UDID. The UDID can be

An alternative to the device UDID - preparing ourselves [duplicate]

别等时光非礼了梦想. 提交于 2019-11-29 08:05:55
问题 Possible Duplicate: UIDevice uniqueIdentifier Deprecated - What To Do Now? I know there have been quite a few questions on SO about this, but I think that because Apple is moving ahead of schedule and actively denying applications that make use of UDIDs (http://pulse.me/s/7mzKE), us developers need to take an active approach and discuss this matter in bulk. So the question is - what is a good, stable and correct alternative for unique device identification, other than accessing it's UDID

How to detect which 3rd sdk use UDID?

大兔子大兔子 提交于 2019-11-29 07:52:39
We use a lot of third-party SDKs from ad providers, and since Apple will not allow UDID access after May 1st, I want to check which SDKs use the UDID function. Is there a simple way or tool to do that? One simple and naïve method is to run strings and grep on the library files. i.e. strings libSomething.a | grep uniqueIdentifier If you see any line that prints exactly uniqueIdentifier there is a risk they call it. This method is not 100% bullet proof. But I'd expect Apple doing a similar check in their automatic validation. You could set a symbolic breakpoint for -[UIDevice uniqueIdentifier]

How do I get my UDID? [closed]

我是研究僧i 提交于 2019-11-29 05:08:48
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I upgraded my iPhone to iOS 7. I have to register my UDID in the Developer Program. But how do I get my UDID? And I also can't see anything in iTunes. 回答1: 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.

How to identify iOS device uniquely instead of using UUID and UDID [duplicate]

*爱你&永不变心* 提交于 2019-11-29 02:00:42
This question already has an answer here: Unique Identification of iOS device for iOS 7.0 and above 6 answers In my iOS app, I have to restrict the user to use iOS app per device. To do this I found a solution that we can use the UUID (Universally Unique Identifier) or UDID (Unique Device Identifier) . But according to this answer I can't use UUID, because if app gets deleted or reinstalled UUID has been getting changed and I don't want this. Also Apple rejects apps if app uses UDID . Is there any way to identify iOS device uniquely. Apple has done away with the approach of UDIDs and will

How can I retrieve the UDID on iOS?

孤者浪人 提交于 2019-11-28 20:06:24
I was wondering if it was possible to find out the UDID of the user's iPhone. Can someone shed some light? Jacob Relkin 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 currentDevice] uniqueIdentifier]; As of iOS7, the uniqueIdentifier property is no longer available. See the UIDevice reference. DZenBot Like

iPhone/iPad unique identifier BESIDES UUID/UDID?

空扰寡人 提交于 2019-11-28 19:43:27
The project I am on is requesting two (or even three) unique identifiers from the iPhone or iPad. I know, I know... the UDID should be enough but we are trying to see if there are any other unique identifiers that we can use. I can get the IMEI, serial number, MAC Address, etc. from the phone using the IOKit.framework but apparently this is frowned upon by Apple and any app using this framework will be rejected. Does anyone have any other ideas, or identifiers that I am missing that could be used? Thanks! This question is old however a new unique, vendor based, identifier has now been added to

UDID Replacement in IOS7

浪尽此生 提交于 2019-11-28 19:39:22
Is there is a alternative for UDID. My app will not be going to App Store as i'm using enterprise distribution. So is there any replacement. I tied advertising identifier, open udid, UIID and secure UDID. But if the phone is reset then i will get a new UDID. Any help would be appreciated. Nitin Gohel For above 6.0 iOS you can use identifierForVendor Or CFUUIDRef . -(NSString*)uniqID { NSString* uniqueIdentifier = nil; if( [UIDevice instancesRespondToSelector:@selector(identifierForVendor)] ) { // iOS 6+ uniqueIdentifier = [[[UIDevice currentDevice] identifierForVendor] UUIDString]; } else { //