从Google商店获取应用程序版本和新功能

时间:2019-02-14 10:58:56

标签: android android-asynctask google-play

我的当前代码可以很好地从Google商店获取最新版本, 但是,是否有办法在同一响应中同时获得当前版本和新功能? 如果应用程序在Play商店中已更新并且用户仍在使用旧版本,我想向用户推荐更新。 这是我的下面的代码

public class AppVersion extends AsyncTask<String, Void, String> {

    private final String packageName;
    private final Listener listener;

    public interface Listener {
        void result(String version);
    }

    AppVersion(String packageName, Listener listener) {
        this.packageName = packageName;
        this.listener = listener;
    }

    @Override
    protected String doInBackground(String... params) {
        return getPlayStoreAppVersion(String.format("https://play.google.com/store/apps/details?id=%s", packageName));
    }

    @Override
    protected void onPostExecute(String version) {
        listener.result(version);
    }

    @Nullable
    private static String getPlayStoreAppVersion(String appUrlString) {
        String
                currentVersion_PatternSeq = "<div[^>]*?>Current\\sVersion</div><span[^>]*?>(.*?)><div[^>]*?>(.*?)><span[^>]*?>(.*?)</span>",
                appVersion_PatternSeq = "htlgb\">([^<]*)</s";
        try {
            URLConnection connection = new URL(appUrlString).openConnection();
            connection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows; U; WindowsNT 5.1; en-US; rv1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
            try (BufferedReader br = new BufferedReader(new InputStreamReader(connection.getInputStream()))) {
                StringBuilder sourceCode = new StringBuilder();
                String line;
                while ((line = br.readLine()) != null) sourceCode.append(line);

                // Get the current version pattern sequence
                String versionString = getAppVersion(currentVersion_PatternSeq, sourceCode.toString());
                if (versionString == null) return null;

                // get version from "htlgb">X.X.X</span>
                return getAppVersion(appVersion_PatternSeq, versionString);
            }

        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

    @Nullable
    private static String getAppVersion(String patternString, String input) {
        try {
            Pattern pattern = Pattern.compile(patternString);
            if (pattern == null) return null;
            Matcher matcher = pattern.matcher(input);
            if (matcher.find()) return matcher.group(1);
        } catch (PatternSyntaxException e) {
            e.printStackTrace();
        }
        return null;
    }

}

并调用我使用的方法

   new AppVersion(context.getPackageName(), version ->
                Log.d("app version test", String.format("App version: %s", version)
                )).execute();

2 个答案:

答案 0 :(得分:1)

我认为这对您的应用来说是一个糟糕的设计。您不应该依靠抓取Play商店向用户显示升级提示。如果Play商店决定更改其HTML设计,该怎么办?您可以让所有用户都遇到麻烦。

更好的解决方案是使用Firebase Remote Config之类的东西。让您的应用从中读取允许的最低版本代码。然后,它完全可以由您控制,您甚至不必编写服务器-firebase会为您完成。

答案 1 :(得分:0)

您可以从BuildConfig类获取应用版本:

BuildConfig.VERSION_CODE.toString()

还有1件事我想清除,您无法在Playstore上获取已发布应用的应用版本。

您可以将版本代码放在后端服务器上,然后通过api调用将其与您当前的应用程序版本一起检查该代码。

我认为这会对您有所帮助。