在预编译的库中查找ASIdentifierManager API用法

时间:2014-02-09 04:07:41

标签: ios iphone

苹果以下面的消息拒绝了游戏。

We found your app uses the iOS Advertising Identifier but does not include ad functionality. This does not comply with the terms of the iOS Developer Program License Agreement, as required by the App Store Review Guidelines.

Specifically, section 3.3.12 of the iOS Developer Program License Agreement states:

"You and Your Applications (and any third party with whom you have contracted to serve advertising) may use the Advertising Identifier, and any information obtained through the use of the Advertising Identifier, only for the purpose of serving advertising. If a user resets the Advertising Identifier, then You agree not to combine, correlate, link or otherwise associate, either directly or indirectly, the prior Advertising Identifier and any derived information with the reset Advertising Identifier."

Please check your code - including any third-party libraries - to remove any instances of:

class: ASIdentifierManager
selector: advertisingIdentifier
framework: AdSupport.framework

If you are planning to incorporate ads in a future version, please remove the Advertising Identifier from your app until you have included ad functionality.

To help locate the Advertising Identifier, use the “nm” tool. For information on the “nm” tool, open a terminal window and enter, “man nm.”

If you do not have access to the libraries source, you may be able to search the compiled binary using the "strings" or "otool" command line tools. The "strings" tool lists the methods that the library calls, and "otool -ov" will list the Objective-C class structures and their defined methods. These techniques can help you narrow down where the problematic code resides.

在我的系统中,找不到otool和nm命令,还有其他方法可以找到ASIdentifierManager吗? 如果我们链接adsupport框架,苹果不允许?

1 个答案:

答案 0 :(得分:1)

您是否已与Facebook或Google Analytics集成?这些框架使用AdSupport.Framework。

对于Google Analytics,您需要更新框架并在Build Settings>中添加“-force_load \ GoogleAnalyticsServices”。其他链接器标志。

对于Facebook SDK,从(https://github.com/facebook/facebook-ios-sdk)获取FBUtility.m并将+ (NSString *)advertiserID方法替换为以下代码:

 + (NSString *)advertiserID {
    return @"";
 }