I'd like to be able to track the Version number of my application using Google Analytics Android SDK, and the Device Model name for people connecting to my application; What is the best way of achieving this?
I'm assuming that I might be able to do something like:
Device Model Name:
tracker.trackPageView("/testApplicationHomeScreen/"+Build.MODEL);
Version Number:
tracker.trackPageView("/testApplicationHomeScreen/"+packageInfo.versionName);
Will this work, and is this the best way of achieving this, or should I be using Events?