我的应用仅因使用广告支持框架而被拒绝。哪个图书馆负责? [英] My app was just rejected for using the Ad support framework. Which library is responsible?

查看:165
本文介绍了我的应用仅因使用广告支持框架而被拒绝。哪个图书馆负责?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这只是一个更新,并没有改变任何与拒绝原因有关的事情。以下是决议中心的回复:

This was simply an update that didn't change anything to do with the rejection reason. Here is the response from the resolution center:


原因
程序许可协议
PLA 3.3.12

Reasons Program License Agreement PLA 3.3.12

我们发现您的应用使用iOS广告标识符,但不包含广告功能。这不符合App Store审查指南要求的iOS开发人员计划许可协议的条款。

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.

具体而言,iOS开发者计划的3.3.12节许可协议声明:

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

选择器: advertisingIdentifier

框架: 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.

要帮助找到广告标识符,请使用nm工具。有关nm工具的信息,请打开终端窗口并输入man nm。

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

如果您无法访问库源,则可能是能够使用strings或otool命令行工具搜索已编译的二进制文件。 strings工具列出了库调用的方法,otool -ov将列出Objective-C类结构及其定义的方法。这些技术可以帮助您缩小有问题的代码所在的位置。

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.

我使用的第三方库是最新版本的 parse.com sdk,flurry analytics的最新版本和测试航班的2.2版本。有谁知道哪个库是问题?谢谢

The third party libraries I'm using is the latest version of parse.com sdk, latest version of flurry analytics, and version 2.2 of test flight. Does anybody know which library is the issue? Thanks

推荐答案

在航站楼:


  1. 转到项目的根文件夹

  2. 类型: grep -r advertisingIdentifier。 (最后的点是关键)

  1. Go to the root folder of your project
  2. Type: grep -r advertisingIdentifier . (the dot at the end is critical)

这将递归检查每个文件,并为您提供有问题的库的名称。

This will recursively check every file, and give you the name of the offending library.

(在我的情况下,它是Flurry)

(in my case, it was Flurry)

这篇关于我的应用仅因使用广告支持框架而被拒绝。哪个图书馆负责?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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