Listen to your customers
There are many ways to get feedback from app users. Most telling (though least instructive) are your active installs - people seldom uninstall apps they use and like. This is supported by Market feedback ("Earthquake!" has over 1600 comments and 1700 ratings to go with regular emails sent to the support address published in the market).
This feedback is invaluable but, as Chris Pruett noted when reviewing feedback for the excellent "Replica Island", user feedback can be unreliable.
Mobile app analytics packages like Google Analytics for Mobile Applications or Flurry let you measure how users actually use your app to help you make objective decisions on where to focus your attention.
I recently added Google Analytics for Mobile Applications to Earthquake
It's a fairly simple process consisting of adding a dummy site to my analytics account (from which to obtain a tracking ID), downloading the Analytics JAR file, sticking it into my project's /lib folder and adding it to the build path (full instructions here).
Within my app I simply get an instance of the tracker:
myTracker = GoogleAnalyticsTracker.getInstance();
Start tracking:
tracker.start("UA-MY_CODE-XX", this);
And add a page hit for every event I wish to track:
EApplication.getInstance().getTracker().trackPageView("/map_view");
All the hits are stored in an SQL database, so you can batch the updates and dispatch them the next time your app accesses the Internet. I do it every time I update the earthquake feed:
EApplication.getInstance().getTracker().dispatch();
The page names you're tracking are totally arbitrary - letting you create a new page for every action you want to track.
This is relevant to my interests
There are three general categories of data I can analyze:
- User demographics. I can track the geographic locations (and language settings) of my users and the speed of their connections. I can also track their screen resolutions and if they're viewing the app in landscape or portrait modes.
- App usage patterns. The real value comes from finding out how people used the app. What options did they enable? Which Activities do they spend most time on? Which menu options were selected? Did anyone long press anything? Did they add the widget? In short: How does their usage confirm or contradict the assumptions I made in the design?
- Exception tracking. I also tracked every caught exception. Now I can find out which unexpected edge cases are occurring regularly, and try to figure out why.
- My users are based predominantly in coastal areas near fault-lines. Los Angeles, San Francisco account for nearly 25% of my active user-base (with LA nearly half of that).
- English accounts for 85% of my user-base. Followed by German, Japanese, and Spanish.
- Less than 2% of my users have small screens.
- The Map View is only marginally more popular than the List View (52% vs 48%).
- Less than 10% of my users view the app in landscape mode.
- 4% of users switch the map type. Of those, the average is to switch it twice - suggesting my default selection is the preferred viewing mode.
- 4% of users center the map to their current position. Very few people do it more than once.
- Of the users who have long-pressed an earthquake in the List View, almost none do it more than once.
- 7% of users install the widget.
- 0.1% of users use the Live Folder.
- The average number of refreshes is one every 3hrs. The default is once per hour.
- 10% of users manually refresh the earthquake list, but most do so only once.
- The app is throwing exceptions when parsing the incoming earthquake feed for 20% of users. Those users are seeing an average of 6 exceptions daily each (approximately equal to the typical number of daily refreshes). There doesn't appear to be a connection between these failures and the user's country, network, or device (pivoting on the error page against these categories reveals similar proportions to overall users).
- I need to track down the cause of those exceptions!
- It's probably not worth creating an optimized display specifically for small screens or landscape viewing.
- I should consider advertising the Widget within the app.
- If I choose to localize I should prioritize German, Japanese, and Spanish.
- Both List View and Map View seem equally popular - this is counter to an assumption I made on likely user preference.
- Most users are refreshing less often than the default, and very few people are regularly manually refreshing. Without a distribution, the average isn't particularly helpful in figuring out if the options need changing.
- The menu options aren't being used. Perhaps I should try moving the most popular one to the main UI to see if discoverability is affecting use.
Conclusions
In truth I've probably performed this analysis a little early. To do a more thorough study it would be smart to collect a couple of weeks of data.
I'm now all set to perform A/B testing on future releases. By tracking a unique version number page within each release I can use Analytics' pivot functionality to track changes in behavior, demographics, and exceptions based on the changes I make for each release.
I also discovered some gaps in my tracking that need to be added to the next release:
In truth I've probably performed this analysis a little early. To do a more thorough study it would be smart to collect a couple of weeks of data.
I'm now all set to perform A/B testing on future releases. By tracking a unique version number page within each release I can use Analytics' pivot functionality to track changes in behavior, demographics, and exceptions based on the changes I make for each release.
I also discovered some gaps in my tracking that need to be added to the next release:
- How many people click an earthquake to view it on the map.
- Exactly which exceptions are being triggered in the parsing routine.
- I need to add extra tracking to figure out the distribution of update frequencies.



9 comments: