应用被拒绝,但我不使用 UDID [英] App rejected, but I don't use UDID

查看:24
本文介绍了应用被拒绝,但我不使用 UDID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

今天我们收到了关于我们提交的反馈,我们不明白报告的问题:应用程序不允许访问 UDID,并且不得使用 UIDevice 的 uniqueIdentifier 方法.请更新您的应用程序和服务器,以将用户与iOS 6 中引入的供应商或广告标识符.".

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.".

我们知道关于 udid 的拒绝,但我们的应用程序不使用它!阅读本文后,我们的团队重新评估了该应用程序,我们没有发现UIDevice uniqueIdentifier"出现的情况.我们还修改了所有使用的库,实际上我们没有发现任何来自 UDID 的调用.

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.

有人有想法吗?

经过研究,我执行了greap"命令,我怀疑 FacebookSDK:

After research, I executed "greap" command and I am suspecting about FacebookSDK:

my-app-directory $ grep -Rnis 'uniqueIdentifier' *
Binary file MyApp/FacebookSDK.framework/FacebookSDK matches
Binary file MyApp/FacebookSDK.framework/Versions/A/FacebookSDK matches
Binary file MyApp/FacebookSDK.framework/Versions/Current/FacebookSDK matches
Binary file MyApp/MyApp.xcodeproj/project.xcworkspace/xcuserdata/myuser.xcuserdatad/UserInterfaceState.xcuserstate matches

FacebookSDK 使用 uniqueIdentifier??分辨率是多少?

FacebookSDK uses uniqueIdentifier?? Whats the resolution?

推荐答案

就我而言,它是 ibGoogleAnalytics_debug.a 库.

In My case it was ibGoogleAnalytics_debug.a library.

要查找哪个库正在使用 uniqueidentifier 方法,请转到您的项目文件夹并输入:

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

我得到了这个:二进制文件 ./My_Project/libGoogleAnalytics_debug.a 匹配

I got this: Binary file ./My_Project/libGoogleAnalytics_debug.a matches

这篇关于应用被拒绝,但我不使用 UDID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆