udid

How to detect if any external libraries are calling [UIDevice currentDevice] uniqueIdentifier]?

随声附和 提交于 2019-12-03 07:28:58
So, since Apple is now rejecting apps that access UDID , on our company's current project, we need to eliminate all APIs that make a call to this property: [[UIDevice currentDevice] uniqueIdentifier] We have eliminated all the calls in our own code, but need to be sure that the many external libraries we are using are not making calls to this property. What is the most reliable method for determining if a library is calling on this property? Thank you in advance! Aside from using otx (which seems to have gotten flaky) one option is to set a symbolic breakpoint on that method and then run the

How to track downloads on iOS5 without UDID

你说的曾经没有我的故事 提交于 2019-12-03 07:02:16
Anyone who knows how to track iOS app downloads (through web ads) without UDID? I have thought it becomes impossible especially if the user comes from website to AppStore. But a company called WDA seems to make it possible. http://www.lovefortech.com/2011/09/17/developers-track-ads-on-ios-and-android-devices-without-udid-with-apptracker/ http://wda.us/press/track-app-downloads-from-web-ads-without-udid.php I have some ideas but I'm not sure which is the best way. 1) Cookie: iOS apps cannot access the cookie in Safari. 2) Shared Local Strage: Is there any shared storage which can be written by

ios: How do I add a new UDID to provisioning profile without a tethered device?

核能气质少年 提交于 2019-12-03 06:21:03
I know how to add from the web portal, but this particular provisioning profile is marked as "Managed by Xcode", therefore, I need to either stop managing from xcode or add a UDID into the profile from Xcode. I cannot find any way to "stop managing" in Xcode. In Xcode, I know how to add the device by tethering to my laptop and refreshing, but I don't see any option to add a UDID. matzino Connect the phone to your mac and open XCode. Then click under Window->Organizer under Devices you must see your connected phone. There is an Button named "use for Development". Click this and after a few

Is the iPhone Simulator UDID unique for each installed instance?

戏子无情 提交于 2019-12-03 00:19:14
i.e. does this call: NSString *udid = [UIDevice currentDevice].uniqueIdentifier; return always the same UDID when it is executed on the iPhone Simulator on any mac computer or not? Currently the iPhone Simulator on my computer returns "2BA99337-3AE2-5234-93DA-193703B876F8". My UDID is reporting as 03B41D62-FB69-5B6D-A95E-473842F4DFE3 from the iPhone Simulator, so it looks like you're correct. The UDID of the simulator is actually the same as the UDID of your Mac. You can easily verify this by looking at the System Profiler utility (where it is called the Hardware UUID). On iPhones, iPads and

Android UDID like IPhone?

こ雲淡風輕ζ 提交于 2019-12-03 00:04:45
Does Android have a UDID like IPhone? If yes, is there a way I can get it programatically? Thanks Chris From the docs : getDeviceId() Returns the unique device ID, for example, the IMEI for GSM and the MEID for CDMA phones. Return null if device ID is not available. Sachin Shelke It's very easy to get the Android UDID - check out the following code: public class DemoActivityActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); TelephonyManager

QuickBlox not sending APNS

蓝咒 提交于 2019-12-02 01:53:38
问题 Suddenly I'm getting an error when sending APNS through QuickBlox, and it's so weird cause it was working pretty well before. After user is logged i'm using TRegisterSubscriptionWithDelegate to register it for APNS, when sending APNS the error is No recipients. At least one user should be subscribed for APNS (Apple Push) (through SDK or REST API) Thought it could be something inside my app but when trying to send APNS in admin panel, got the same error: I've uploaded .p12 certificate and it's

Invalid Application Binary [closed]

我的梦境 提交于 2019-12-01 11:28:04
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 uniqueIdentifier". We also revised all used libraries and really we do not find any call from UDID. Someone have ideas

How to make a secure login using UDID or device token?

Deadly 提交于 2019-12-01 09:32:14
So I'm making an app where I want the users to be able add, edit and rate content, but I do not want to force them to register. Instead I was planning on just using their device id or device token to identify them. I'm planning on making both an iPhone and Android version, so I'm looking for a general solution, but the iPhone version has higher priority, so an iPhone specific solution would also be welcome. The problem is that I don't want just anyone to be able to use my web service by sending a phony device id or someone else's device id. How would the client prove to the server that it is

Unable to get UDID from iPhone Xs Max | iOS | Apple | iPhone

谁说我不能喝 提交于 2019-12-01 09:06:23
I need to get the UDID of my iPhone Xs Max to test my App. Apparently, That does not work on the iPhone Xs Max You are getting an error because iOS 12 requires device management profiles to be installed over a valid HTTPS connection. That site's certificate is not trusted. Better to use direct System Report or XCode to find UDIDs: Answers: https://stackoverflow.com/a/52473809/342794 or https://stackoverflow.com/a/52997294/342794 Details on using udid.io (Specific to this question) It seems you are using udid.io ( http://get.udid.io -- No "https" !!??) to get UDID without any app installation

Invalid Application Binary [closed]

拥有回忆 提交于 2019-12-01 07:28:18
问题 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