udid

App rejected, but I don't use UDID

前提是你 提交于 2019-12-17 02:43:08
问题 Today we received a feedback about our submission and we do not understand the reported problem: "Apps are not permitted to access the UDID and must not use the uniqueIdentifier method of UIDevice. Please update your apps and servers to associate users with the Vendor or Advertising identifiers introduced in iOS 6.". We know about the rejections about udid, but our App do not use this! After read this, our team reevaluated the App and we do not found occurrences from "UIDevice

Free iOS in app purchase for some users/devices

ぐ巨炮叔叔 提交于 2019-12-14 04:06:11
问题 I would like to build a mechanism to free my in-app purchases for some of my VIP users devices. My idea is I pre-save the UDID of the user devices in my backend server. When the app starts, it will call my server and get the list of udid and check if the device is in VIP list. if yes, directly show full features without any button to ask for in-app purchase. However, UDID cannot be used anymore. What should I do in this case? I dont want to ask user to enter some codes. because it would

iphone how to send my project build to someone else

可紊 提交于 2019-12-12 17:07:41
问题 my work colleague is asking me to send a build so that he can install the application on his phone to test it. I need to send this application to him today. a build that is. not the actualy project just the correct files needed so he can install it on his iphone. Heres what I've done. Ive added his UDID to a new device in the provisioning portal. then i created a new provisioning profile with my app id. On the provisioning portal there is an option in the profile section next to that new

IMEI as a fallback of UDID, is it a good idea?

a 夏天 提交于 2019-12-12 16:04:52
问题 Another question about UDID ... UDID is a unique identifier for the phone, but the IMEI number is also a unique identifier. I understand that a device can have different MAC adress, but the IMEI is unique. So my question is should I use IMEI as a fallback of the UDID. Although, if the UDID has been deprecated to avoid customer tracking, is it possible that Apple will reject application that use the IMEI number, or even disable the possibility to access the IMEI number ? 回答1: I am sure you can

How to publish applications for iphone enterprise developer program?

孤人 提交于 2019-12-12 07:38:54
问题 I'm developing an iPhone application for a company, they do not want to publish the app to the app-store. So, i have enrolled with iphone enterprise developer program with 299$. My question is how to distribute App to internal company employees without registering their UDIDs? Do i need to send modified .app file with provision profile to individual App user through mail to install this iPhone application? I`m familiar with IOS developer program but the iPhone Enterprise Developer Program is

Invalid Application Binary [closed]

两盒软妹~` 提交于 2019-12-12 02:34:40
问题 This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 6 years ago . Today we received a feedback about our submission and we do not understand the reported problem: "Apps are not permitted to access the UDID and must not

Is there a persistent replacement for UDID?

China☆狼群 提交于 2019-12-11 19:26:09
问题 My requirement is for a UDID that persists across device reboots, OS updates, app re-installs, and device resets (ie the user chooses Settings > General > Reset). I'm not trying to breach any security on the device; this is for a financial app. As I understand it, OpenUDID is deprecated. I have not figured out whether SecureUDID is useful, given that users can opt out and for security reasons. The advertiser ids and vendor ids are not persistent. Saving an ID in keychains or user defaults

iOS 7 showing different UDIDs in different applications

限于喜欢 提交于 2019-12-11 18:57:19
问题 I am using this code to get the UDID of iOS 7 device in my app +(NSString*)uniqueIDForDevice { NSString* uniqueIdentifier = nil; if( [UIDevice instancesRespondToSelector:@selector(identifierForVendor)] ) { // >=iOS 7 uniqueIdentifier = [[[UIDevice currentDevice] identifierForVendor] UUIDString]; } else { //<=iOS6, Use UDID of Device CFUUIDRef uuid = CFUUIDCreate(NULL); //uniqueIdentifier = ( NSString*)CFUUIDCreateString(NULL, uuid);- for non- ARC uniqueIdentifier = ( NSString*

Short of jailbreaking, does a UDID ever change on an iDevice?

為{幸葍}努か 提交于 2019-12-11 05:24:44
问题 I have a beta tester to whom, 4 months after the last beta test cycle, I sent a new versions' first beta test of an app. When she said that it wouldn't load, we checked her UDID, and it is different than what we used 4 months ago, so my provisioning clearly didn't work. She says it's the same device used before. I've yet to further explore what upgrades she might have done or if she (or maybe her child?) has jail-broken it. Are there any Apple sanctioned actions that would change the UDID on

Sending Push Notification without accessing UDID

陌路散爱 提交于 2019-12-10 19:54:31
问题 I come to know that Apple started to reject apps that access UDIDs. Then How can we send push notification without accessing UDIDs. Is it possible? if yes, please help me to solve this problem. thanks in advance. 回答1: The device token (used by APNS) and the UDID are two different things. They have nothing to do with each other. You obtain the device token for push notifications in your app delegate's application:didRegisterForRemoteNotificationsWithDeviceToken: method. The documentation notes