Card 59 (Add GA)
common: - TrackerUtils: added trackEvent method variation
This commit is contained in:
parent
bac0a9f25e
commit
55cc2a263b
1 changed files with 12 additions and 0 deletions
|
@ -269,6 +269,18 @@ public class TrackerUtils {
|
||||||
EasyTracker.getTracker().sendEvent(category + getTrackingSuffix(), action, label, null);
|
EasyTracker.getTracker().sendEvent(category + getTrackingSuffix(), action, label, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Track an event
|
||||||
|
*
|
||||||
|
* @param category
|
||||||
|
* @param action
|
||||||
|
* @param label
|
||||||
|
* @param value
|
||||||
|
*/
|
||||||
|
public static void trackEvent(String category, String action, String label, Long value) {
|
||||||
|
EasyTracker.getTracker().sendEvent(category + getTrackingSuffix(), action, label, value);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param inteval
|
* @param inteval
|
||||||
* @param action
|
* @param action
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue