android 软件下载更新,简单的实现多种更新方式

android7.0下载更新失败后,抽时间就封装整理了一下,简单的实现了多种更新的方式。反正总是要用到的就简单的记录一下,方便以后的用的时候也好折腾。


android 软件下载更新,简单的实现多种更新方式_第1张图片
功能界面.png

android 软件下载更新,简单的实现多种更新方式_第2张图片
更新提示界面.png
可以通过type参数指定更新方式,方便更改.可以通过return 结果进行动态权限的判断。接着调用start就可以了.
UpdateManager.getInstance().checkUpdate(this, 2, url, mssage, 0);
UpdateManager.getInstance().start();
    /**
     * @param versionCode   最新的版本号
     * @param url           apk下载链接
     * @param updateMessage 更新内容
     * @param type          0:引导更新,1:静默更新,2:强制更新:3:显示Notification进度更新
     */
    public boolean checkUpdate(Context context, int versionCode, String url, String updateMessage, int type) {
        this.context = context;
        this.newVersionCode = versionCode;
        this.type = type;
        this.url = url;
        if (!TextUtils.isEmpty(updateMessage)) {
            this.updateMessage = updateMessage;
        }
        return haveNewVersion = versionCode > getVersionCode();
    }

    public void start() {
        if (!haveNewVersion) {
            return;
        }
        init();
        //检测是否已下载
        if (checkDownload(newVersionCode)) {
            isDownload = true;
        } else {
            isDownload = false;
        }
        if (type == NO_PROGRESS_MODE && !isDownload) {
            downloadFile();
        } else {
            showDialog();
        }
    }

默认的话只实现了系统DownloadManager,和okhttp的下载方式。可以直接更改DownLoadRunnable里面自己定义需要的下载方式。

加入了Android7.0 FileProvider的判断,记得AndroidManifest.xml加入provider的配置。如果其他三方也是用了FileProvider,可以三方的合并配置到一起。当然不嫌麻烦也可以自定义FileProvider,新添加一个配置。

   /**
     * 安装apk
     *
     * @param context 上下文
     * @param file    APK文件
     */
    private void installApk(Context context, File file) {

        Intent intent = new Intent();
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.addCategory(Intent.CATEGORY_DEFAULT);
        intent.setAction(Intent.ACTION_VIEW);
        if (Build.VERSION.SDK_INT > Build.VERSION_CODES.M) {
            intent.setDataAndType(FileProvider.getUriForFile(context, context.getPackageName() + ".file.provider", file), "application/vnd.android.package-archive");
            intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        } else {
            intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
        }
        context.startActivity(intent);
    }
  

            

        

    

    
    
    
    

路径间的简单对应关系
     代表设备的根目录new File("/");
     代表context.getFilesDir()//内部存储空间//data/data//files/
     代表context.getCacheDir()//内部存储空间//data/data//cach/
     代表Environment.getExternalStorageDirectory()//外部存储 /mnt/sdcard/
    代表context.getExternalFilesDirs()//外部存储 /mnt/sdcard/Android/data//files/
    代表getExternalCacheDirs()//外部存储 /mnt/sdcard/Android/data//cach/

还有为了兼容android 8.0需要添加未知来源安装权限

  

最后附上github地址:https://github.com/starrysky0/UpdateApkUtils

你可能感兴趣的:(android 软件下载更新,简单的实现多种更新方式)