开发者

Is there a way to understand if Android App Update was installed by users?

I just published an update to my Android App on Android Market and Android market sent notification for the update which is fine. But I am trying to figure out if there is a way to know if the users installed the update th开发者_运维问答at was published?

I do not see any details in Android Market Developer console. These are users who were using the earlier version already not new users. Any insight would be very helpful.


You can track utilization with Google Analytics.

I'm doing this inside a changelist pop-up for the new version:

 if (!appPrefs.getAppVer().equals(getAppVerName())) {

    ...

    tracker.trackEvent("Home Screen", "Click", getAppVerName(), 1);
    appPrefs.saveAppVer(getAppVerName());
    appPrefs.saveAcceptedUsageAggrement(false);

 }

You can see that I set the AcceptedUsageAgreement to false so that gets displayed after an update too ;)

where getAppVerName() is ...

public String getAppVerName() {
    String text;
    try {
        text = getPackageManager().getPackageInfo(getPackageName(), 0).versionName;
    } catch (NameNotFoundException e) {
        text = "Version Not Found";
    }
    return text;
}


You can kinda see this if you're using Flurry. If you're not using Flurry, it's really easy to set up (and it's free). Flurry tags user sessions with the version of your app that's running and you can filter your stats on the website by version. So, select the previous version, and you can see a chart of the number of users and sessions per day of that version. This won't tell you exactly how many people upgraded, but you can get a feel for who didn't.


No there is no way to know if a user installed an update or force a user to install an update without adding special code to your app to force them to do so.


Integrate Crashlytics into your app. This will give you a complete report of active users and crashes per day for each version you release.

Tutorial to integrate Crashlytics to your app

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜