Android programmatically update application when a new version is available

前端 未结 9 1985
别那么骄傲
别那么骄傲 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:28

    Well there is another way I figured out and this is how I am doing it.

    HttpPost httppostUserName = new HttpPost("https://androidquery.appspot.com/api/market?app=com.supercell.clashofclans"); //your package name
    HttpClient httpclient = new DefaultHttpClient();
    
    HttpResponse responseUser = httpclient.execute(httppostUserName);
    String responseStringUser = EntityUtils.toString(responseUser.getEntity(), HTTP.UTF_8);
    
    Log.d(Constants.TAG, "Response: " + responseStringUser);
    try {
        JSONObject Json = new JSONObject(responseStringUser);
        newVersion = Json.getString("version");
    } catch (Exception e) {
        e.printStackTrace();
    }
    

    You will get a clearer view if you paste the url in your browser to see the results.

提交回复
热议问题