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. How should I achive that? On their sdk git documentation there is nothing about that.
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")
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.