andriod app更新

对于安卓用户来说,手机应用市场说满天飞可是一点都不夸张,比如小米,魅族,百度,360,机锋,应用宝等等,当我们想上线一款新版本APP时,先不说渠道打包的麻烦,单纯指上传APP到各大应用市场的工作量就已经很大了,好不容易我们把APP都上传完了,突然发现一个会导致应用闪退的小Bug,这时那个崩溃啊,明明不是很大的改动,难道我们还要再去重新去把各大应用市场的版本再上传更新一次?相信我,运营人员肯定会弄死你的!!

有问题,自然就会有解决问题的方案,因此我们就会想到如果在APP里内嵌自动更新的功能,那么我们将可以省去很多麻烦,当然关于这方面功能的第三方SDK有很多。

好了,言归正传,今天我们自己来实现下关于APP自动更新。

流程其实并不复杂:当用户打开APP的时候,我们让APP去发送一个检查版本的网络请求,或者利用服务端向APP推送一个透传消息来检查APP的版本,如果当前APP版本比服务器上的旧,那么我们就提醒用户进行下载更新APP,当然在特定的情况下,我们也可以强制的让用户升级,当然这是很不友好的,尽可能的减少这样的做法。

好了,来梳理下流程,首先既然是一个APP的更新,那么我们就需要去下载新的APP,然后我们需要一个通知来告诉用户当前的下载进度,再来当APP安装包下载完成后,我们需要去系统的安装程序来对APP进行安装更新。

知识点:

下载:异步HTTP请求文件下载,并监听当前下载进度(这里我采用了okhttp)

通知:Notification(具体用法请自行翻阅api文档

安装:Intent (具体用法请自行翻阅api文档

来看下具体实现代码

我们需要一个后台服务来支撑App的下载

  1. import android.app.Notification;
  2. import android.app.notificationmanager;
  3. import android.app.PendingIntent;
  4. import android.app.Service;
  5. import android.content.Intent;
  6. import android.graphics.BitmapFactory;
  7. import android.net.Uri;
  8. import android.os.IBinder;
  9. import android.support.annotation.Nullable;
  10. import android.support.v7.app.NotificationCompat;
  11.  
  12. import com.fangku.commonlibrary.utils.StorageUtil;
  13. import com.zhy.http.okhttp.OkHttpUtils;
  14. import com.zhy.http.okhttp.callback.FileCallBack;
  15.  
  16. import java.io.File;
  17.  
  18. import okhttp3.Call;
  19.  
  20. /**
  21. * 自动下载更新apk服务
  22. * Create by: chenwei.li
  23. * Date: 2016-08-14
  24. * time: 09:50
  25. * Email: lichenwei.me@foxmail.com
  26. */
  27. public class DownloadService extends Service {
  28.  
  29. private String mDownloadUrl;//APK的下载路径
  30. private notificationmanager mnotificationmanager;
  31. private Notification mNotification;
  32.  
  33.  
  34. @Override
  35. public void onCreate() {
  36. super.onCreate();
  37. mnotificationmanager = (notificationmanager) getSystemService(Service.NOTIFICATION_SERVICE);
  38.  
  39. }
  40.  
  41. @Override
  42. public int onStartCommand(Intent intent,int flags,int startId) {
  43. if (intent == null) {
  44. notifyMsg("温馨提醒","文件下载失败",0);
  45. stopSelf();
  46. }
  47. mDownloadUrl = intent.getStringExtra("apkUrl");//获取下载APK的链接
  48. downloadFile(mDownloadUrl);//下载APK
  49. return super.onStartCommand(intent,flags,startId);
  50. }
  51.  
  52. @Nullable
  53. @Override
  54. public IBinder onBind(Intent intent) {
  55. return null;
  56. }
  57.  
  58. private void notifyMsg(String title,String content,int progress) {
  59.  
  60. NotificationCompat.Builder builder = new NotificationCompat.Builder(this);//为了向下兼容,这里采用了v7包下的NotificationCompat来构造
  61. builder.setSmallIcon(R.mipmap.icon_login_logo).setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.icon_login_logo)).setContentTitle(title);
  62. if (progress > 0 && progress < 100) {
  63. //下载进行中
  64. builder.setProgress(100,progress,false);
  65. } else {
  66. builder.setProgress(0,false);
  67. }
  68. builder.setAutoCancel(true);
  69. builder.setWhen(System.currentTimeMillis());
  70. builder.setContentText(content);
  71. if (progress >= 100) {
  72. //下载完成
  73. builder.setContentIntent(getInstallIntent());
  74. }
  75. mNotification = builder.build();
  76. mnotificationmanager.notify(0,mNotification);
  77.  
  78.  
  79. }
  80.  
  81. /**
  82. * 安装apk文件
  83. *
  84. * @return
  85. */
  86. private PendingIntent getInstallIntent() {
  87. File file = new File(StorageUtil.DOWNLOAD_DIR + "APP文件名");
  88. Intent intent = new Intent(Intent.ACTION_VIEW);
  89. intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  90. intent.setDataAndType(Uri.parse("file://" + file.getAbsolutePath()),"application/vnd.android.package-archive");
  91. PendingIntent pendingIntent = PendingIntent.getActivity(this,intent,PendingIntent.FLAG_UPDATE_CURRENT);
  92. return pendingIntent;
  93. }
  94.  
  95.  
  96. /**
  97. * 下载apk文件
  98. *
  99. * @param url
  100. */
  101. private void downloadFile(String url) {
  102.  
  103. OkHttpUtils.get().url(url).build().execute(new FileCallBack(StorageUtil.DOWNLOAD_DIR,"APP文件名") {
  104. @Override
  105. public void onError(Call call,Exception e,int id) {
  106. notifyMsg("温馨提醒",0);
  107. stopSelf();
  108. }
  109.  
  110. @Override
  111. public void onResponse(File response,int id) {
  112. //当文件下载完成后回调
  113. notifyMsg("温馨提醒","文件下载已完成",100);
  114. stopSelf();
  115.  
  116.  
  117. }
  118.  
  119. @Override
  120. public void inProgress(float progress,long total,int id) {
  121. //progress*100为当前文件下载进度,total为文件大小
  122. if ((int) (progress * 100) % 10 == 0) {
  123. //避免频繁刷新View,这里设置每下载10%提醒更新一次进度
  124. notifyMsg("温馨提醒","文件正在下载..",(int) (progress * 100));
  125. }
  126. }
  127. });
  128.  
  129.  
  130. }
  131. }

然后我们只需要在我们想要的更新APP的时候去调起这个服务即可,比如在系统设置里的"版本检查"等

  1. Intent intent = new Intent(mContext,DownloadService.class);
  2. intent.putExtra("apkUrl","APK下载地址");
  3. startService(intent);

总结

这里我只是粗略演示本地自动更新APP的功能,在实际应用中,我们应该配合服务端来做,比如在用户启动APP的时候去比对版本号,如果版本号低于服务器的版本号,那么此时服务端应该给客户端一个透传推送,这里的推送内容应该为新版本APP的下载地址,此时就可以根据该地址来下载新版APP了,当遇到重大更新,不再对老版本进行兼容的时候,可以强制用户升级,这里的方案有很多,比如调用系统级对话框,让用户没办法取消等操作,这里就不做更多描述。以上就是这篇文章的全部内容,希望对有需要的人能有所帮助。

posted @ 2023-01-16 10:38  herry507  阅读(24)  评论(0编辑  收藏  举报