I'm trying to get the custom dimensions feature of Google Analytics for Android (V2) working on my Android app.
I have everything else working but I can't get it reporting the custom dimension.
I have the custom dimension "age" defined on the web client.
Right now my onStart() looks like:
public void onStart() {
super.onStart();
EasyTracker.getInstance().activityStart(this);
String dimensionValue = "20-29";
Tracker tracker = EasyTracker.getTracker();
tracker.setCustomDimension(1, dimensionValue);
tracker.trackView();
}
Any help would be appreciated.
Thanks!