分支机构未跟踪 Google 广告 ID
Posted
技术标签:
【中文标题】分支机构未跟踪 Google 广告 ID【英文标题】:Branch not tracking Google Advertising Id 【发布时间】:2020-03-07 03:30:28 【问题描述】:我在我的项目中使用 Branch.io。我无法通过他们的任何事件(安装/打开/点击)看到 Google 广告 ID 跟踪。我根据他们的doc 添加了 play-service-ads 依赖项。
注意:我正在调试版本中进行测试。
为什么 Branch 不跟踪广告 ID? 会在 Play 商店构建中进行跟踪吗?【问题讨论】:
【参考方案1】:在集成 SDK 时,使用 setDebug 来验证您的应用是否能够与分支服务器通信以及正在接收深层链接数据通常很有用。请使用实时模式测试 google 广告 ID。还要确保您的应用构建中不存在以下代码:
Branch.enableDebugMode();
如果您仍然遇到任何问题,请通过 support@branch.io 联系我们超级乐于助人的支持团队。
【讨论】:
【参考方案2】:Please call the following line right after you instantiate Branch in your
Application’s onCreate() or Activity’s onCreate() (and before you call initSession)
mTracker = sAnalytics.newTracker("UA-XXXXXXXX-1");
String client_id = mTracker.get("&cid");
Branch.getInstance().setRequestMetadata("$google_analytics_client_id",client_id);
【讨论】:
以上是关于分支机构未跟踪 Google 广告 ID的主要内容,如果未能解决你的问题,请参考以下文章