无法使用带有 IDFA 的 Google Analytics iOS SDK 验证人口统计报告的跟踪代码

Cant validate tracking code for demographic reports using Google Analytics iOS SDK with IDFA

我正在尝试使用 Google Analytics iOS SDK.

为我的 iOS 应用用户收集 Demographics and Interest Reports

我在我的 Google 分析仪表板中启用了 Demographics and Interest Reports。我还安装了 GoogleIDFASupport pod (Cocoapods),并在我的应用委托中设置了以下代码:

#if DEBUG
#else
    let gAnalytics = GAI.sharedInstance()
    gAnalytics.defaultTracker.allowIDFACollection = true
#endif

我已经多次测试该应用程序,并且 运行 在我的 iPhone 上的发布方案中,该应用程序目前也在 App Store 中等待审核。

当我登录到 Google Analytics 仪表板并转到 Demographics and Interest Reports 部分时,它告诉我我已启用它,但还会显示一个显示 "Validate tracking code" 的按钮.如果我点击按钮,页面就会刷新并告诉我 "Your Analytics tracking code does not include the necessary support for the Demographics and Interest reports."

如何验证跟踪代码?

我最终只是忽略了警告并跳过了验证。人口统计数据一直很好。