在多个apks的情况下,以编程方式从playstore获取最新应用程序的版本代码

时间:2017-04-26 05:49:17

标签: android android-studio android-version

我在从Playstore获取应用程序的最新版本代码时遇到了问题。我有app apk以及在playstore上传的apk。现在,当我打电话给Playstore以获取最新版本的移动应用程序时,如果提供响应为:

  

根据设备的不同而不同

那么有什么方法可以获得移动应用的最新版本代码吗?

以下是我用来检索应用程序最新版本代码的代码。

private class GetVersionCode extends AsyncTask<Void, String, String> {
    @Override
    protected String doInBackground(Void... voids) {
        String newVersion = null;
        try {
            newVersion = Jsoup.connect("https://play.google.com/store/apps/details?id=" + getApplicationContext().getPackageName() + "&hl=it").timeout(30000)
                    .userAgent("Mozilla/5.0 (Windows; U; WindowsNT 5.1; en-US; rv1.8.1.6) Gecko/20070725 Firefox/2.0.0.6").referrer("http://www.google.com")
                    .get()
                    .select("div[itemprop=softwareVersion]")
                    .first()
                    .ownText();
            return newVersion;
        } catch (Exception e) {
            return null;
        }
    }

    @Override
    protected void onPostExecute(String onlineVersion) {
        super.onPostExecute(onlineVersion);
        if (onlineVersion != null && !onlineVersion.isEmpty()) {
            String currentVer = getIntVersionNumber(currentVersion);
            String onlineVer = getIntVersionNumber(onlineVersion);
            if (Integer.parseInt(currentVer) < Integer.parseInt(onlineVer)) {
                showAlertDialog(onlineVersion);
            }
        }
    }
}

1 个答案:

答案 0 :(得分:1)

你得到“随设备变化”,因为应用程序在设备上运行不同的版本

enter image description here

如果有版本号,那么你可以得到版本号,否则不可能