最近看到有一篇文章,主要写Android如何检测版本更新,但有点无语,其实挺简单的问题,被说的如此复杂。于是想记录下来,希望能帮到需要的人。
检测版本更新的思路:
1.首先获取现app的versionCode,然后跟服务器返回的versionCode对比,若小于服务器的versionCode,则说明有新版本了,需要更新了。
2.服务器提供新版本的apk地址,共客户端进行下载安装。
服务端返回的新版本信息:
{"versionCode": 1, "versionName": "1.1" ,"newApkUrl" : "url"}
客户端:使用okHttp
OkHttpUtils.post() .url("url")//这里是访问版本更新数据的url .build() .execute(new StringCallback() { @Override public void onError(Call call, Exception e, int id) { } @Override public void onResponse(String response, int id) { try { JSONObject jObject = new JSONObject(response); int newVersion = jObject.getInt("versionCode"); String apkUrl = jObject.getString("newApkUrl");//新版本apk的地址 int appVersion = context. getPackageManager().getPackageInfo(context.getPackageName(), 0).versionCode; if(newVersion > appVersion){//如果新的版本大于现有的版本,则进行下载 OkHttpUtils.get() .url(apkUrl) .build() .execute(new FileCallBack(Environment.getExternalStorageDirectory().getAbsolutePath(), Config.APP_NAME) { @Override public void onError(Call call, Exception e, int id) { } @Override public void inProgress(float progress, long total, int id) { } @Override public void onResponse(File response, int id) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(new File(Environment .getExternalStorageDirectory(), Config.APP_NAME)), "application/vnd.android.package-archive"); context.startActivity(intent); } }); }else{ Toast.makeText(context, "当前版本已为最新版本", Toast.LENGTH_SHORT).show(); } } catch (JSONException e) { e.printStackTrace(); } catch (PackageManager.NameNotFoundException e) { e.printStackTrace(); } } });
主要方法:
1.
int appVersion = context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionCode;
获取现app的版本
2.
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory(), Config.APP_NAME)),"application/vnd.android.package-archive"); context.startActivity(intent);
对下载到本地的apk包进行安装
如果对okHttp不了解可以去了解了解。
最后加上一个封装了的版本更新检测工具。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/3164.html