简体   繁体   English

用谷歌 UAC 调整 android sdk

[英]Adjust android sdk with Google UAC

I have Adjust sdk added to my app, and someone asked me to track with it all the app downloads from the Google UAC campaign.我已将调整 sdk 添加到我的应用程序中,有人要求我使用它跟踪来自 Google UAC 活动的所有应用程序下载。 How should I achive that?我应该如何做到这一点? On their sdk git documentation there is nothing about that.在他们的 sdk git 文档中没有任何内容。

https://docs.adjust.com/en/google-api/#what-google-adwords-data-does-adjust-report https://docs.adjust.com/en/google-api/#what-google-adwords-data-does-adjust-report

I have received a label ("Google UAC Android") and a key ("keyvalue")我收到了 label(“Google UAC Android”)和一个密钥(“keyvalue”)

 val adjustEvent = AdjustEvent("abc123")
 adjustEvent.addPartnerParameter("Google UAC Android", "keyvalue")       
 Adjust.trackEvent(adjustEvent)

I am not suer if i need also a token or i just use the keyvalue instead of token and not add a parameter.如果我还需要一个令牌,或者我只是使用keyvalue而不是令牌而不添加参数,我不喜欢。

In order to do this with Adjust SDK, you simply need to configure it as stated in the READEM and set up session tracking properly in you app.为了通过调整 SDK 执行此操作,您只需按照自述文件中的说明进行配置,并在您的应用程序中正确设置 session 跟踪。 This will cause SDK to automatically upon your app launch tracks installs.这将导致 SDK 在您的应用启动时自动跟踪安装。 And not really sure how Google UAC campaigns tracking works.并且不确定 Google UAC 活动跟踪是如何工作的。 Install tracking in SDK is essential to be set up, but attributing those installs to Google UAC campaign either goes via install referrer content (so make sure to check chapter about setting up things for install referrer API to work with your app) or this is simply automagically handled behind the scenes because Google is SAN (self attributing network) which will claim your install which was tracked by Adjust when Adjust asks Google does it belong to them. SDK 中的安装跟踪是必不可少的设置,但是将这些安装归因于 Google UAC 活动要么通过安装引荐来源网址内容进行(因此请务必查看有关设置安装引荐来源网址 API 以与您的应用程序一起使用的内容的章节)或者这只是自动在幕后处理,因为 Google 是 SAN(自我归因网络),当 Adjust 询问 Google 是否属于他们时,它将声称您的安装由 Adjust 跟踪。

Cheers干杯

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM