我在从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);
}
}
}
}