Event Tracking - adjust/cordova_sdk GitHub Wiki
You can use adjust to track all kinds of events. Let's say you want to track every tap on a button. Simply create a new
event token in your [dashboard]. Let's say that event token is abc123
. You can add the following line in your button’s click
handler method to track the click:
var adjustEvent = new AdjustEvent("abc123");
Adjust.trackEvent(adjustEvent);