AdMob给出的SKAdNetwork警告以及iOS应用何时需要App Tracking Transparency提示

5

我刚开始在我的iOS游戏中使用AdMob的广告时收到了警告信息:

"Some apps haven’t been configured to use SKAdNetwork"

我可能没有获得一些广告积分。 根据这个网址,看起来很容易解决:

https://developers.google.com/admob/ios/ios14

我只需要在 Info.plist 中添加一个密钥。

但是,在该链接中还提到了应用追踪透明度授权,我不确定该怎么做。 我知道 ATT 是什么 - 它会弹出一个请求许可的警报,并影响对 IDFA 的访问。 但奇怪的是,谷歌说“如果您决定包含 ATT”。这就像谷歌并不真正想让你这样做。

此外,据我所见,在 iOS 14.4 中,即使没有添加 ATT 警报,IDFA 仍然是可以访问的。 所以有一些问题:

  1. Does anyone know when (or if) Apple will enforce requiring the ATT alert? They used to say early 2021 - is there a firmer date or specific version number? It does not seem to be enforced yet (my game update without it was approved this week), and the IDFA seems perfectly accessible on iOS 14.4 without the alert. I can print it out with:

    Console.WriteLine("AdvertisingIdentifier={0}", AdSupport.ASIdentifierManager.SharedManager.AdvertisingIdentifier);
    

    And it’s not all zeros.

  2. Am I really losing ad revenue without the SKAdNetwork key when the IDFA is still accessible anyway?

  3. Is SKAdNetwork the future and is IDFA being sort of phased out? So in the future, AdMob will not use IDFA at all?

  4. Should I go ahead and implement the ATT alert or wait (I’m worried most people will deny tracking, or it may put them off installing the game at all). Am I losing anything by not having the alert (I don’t think so, yet).


需要使用ATT在iOS 14.5以上版本。目前该版本还处于测试阶段,因此我预计它将会在接下来的几周内发布。SKAdNetwork允许进行归因跟踪(跟踪用户在点击您应用中的广告后安装应用的情况)。IDFA允许广告框架跟踪设备上用户在其他应用中的活动。它不会消失,但在14.5及以后的版本中,您必须要请求访问权限,否则将得到零值。 - Paulw11
@Paulw11 谢谢。如果我将IDFA留空(即不添加警告),这是否意味着AdMob广告不会个性化?广告收入会减少多少?我的意思是,大多数人都会选择“不跟踪”,因此可能没有太大的区别,并且可以避免麻烦用户? - Bbx
是的,广告无法个性化。谁能说收入减少会有多少? - Paulw11
1个回答

0
  1. 他们永远不会强制执行它,因为如果您不显示它,那意味着您的应用程序不直接跟踪用户。

注意:我建议不要使用ATT,因为大多数用户都要求您不要跟踪他们。

  1. 是的,如果用户允许您跟踪他们,那么他们将获得更个性化的广告,通常会转化为更多收入,但正如我在上面的注释中所述,大多数用户不会让您跟踪他们。

  2. 是的,似乎是这样,SKAdNetwork需要在保护用户隐私的同时衡量广告活动的成功。

  3. 不,我认为这是不必要的。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接