Android: Traffic stats (daily unique user, monthly unique user) for applications using app id
How can I find daily unique user, mon开发者_StackOverflow社区thly unique user, weekly unique user for app using app id ?
Android Market only tracks number of downloads and active installations, which apparently also counts any updates installed. To track unique users you should probably build this into your app with a pingback to your own servers. Here's a post on how to count devices reliably.
One way is doing like Peter said, and building you own infrastructure. This is the best one if you need to know your user data at a very grained level.
Another solution (cheaper) is to use the Google Analytics SDK for Android. It's a hack supported by google that allows to use the GoogleAnalytics platform to track mobile apps data, but its cheap and fast to implement (and scale).
精彩评论