I want to track events to Google analytics from from my application. The problem is that I have limited options Category, Action, Label and Value.
// Get tracker.
Tracker t = ((AnalyticsSampleApp) getActivity().getApplication()).getTracker(
TrackerName.APP_TRACKER);
// Build and send an Event.
t.send(new HitBuilders.EventBuilder()
.setCategory(getString(categoryId))
.setAction(getString(actionId))
.setLabel(getString(labelId))
.build());
Is there any way to customize this event so that I can track event according to my preferences?