By using Google Analytics Android SDK 3, I can successfully can see my native Android application's statistics.
Regarding to this documentation I created custom dimensions for my app. (It seems like no need to set dimensions from web interface. Coding is adequate)
// May return null if EasyTracker has not yet been initialized with a
// property ID.
EasyTracker easyTracker = EasyTracker.getInstance();
// Send the custom dimension value with a screen view.
// Note that the value only needs to be sent once, so it is set on the Map,
// not the tracker.
easyTracker.send(MapBuilder
.createAppView("Home screen")
.set(Fields.customDimension(1), "premiumUser");
.build()
);
But when I check Google Analytics web interface I can't see my dimensions in any place. From "Screens" part of analytics there exists custom variables but there is no place for dimensions. How can I see the custom dimensions in analytics reports ?