Android programmatically update application when a new version is available

前端 未结 9 1965
别那么骄傲
别那么骄傲 2020-12-01 08:45

Within my application, I want to check if there is any updated version of my application is in the app store. If there is any, then have to inform the user through an alert

9条回答
  •  隐瞒了意图╮
    2020-12-01 09:27

    I have the same issue but it resolved by JSOUP library. Here is the library download link: http://jsoup.org/download

    String newVersion = Jsoup
                            .connect(
                                    "https://play.google.com/store/apps/details?id="
                                            + "Package Name" + "&hl=en")
                            .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();
    
                    Log.e("new Version", newVersion);
    

提交回复
热议问题