Android應用更新-自動檢測版本及自動升級

步驟:

  • 1.檢測當前版本的信息AndroidManifest.xml-->manifest-->[Android]

  • 2.從服務器獲取版本號(版本號存在于xml文件中)并與當前檢測到的版本進行匹配,如果不匹配,提示用戶進行升級,如果匹配則進入程序主界面。(demo中假設需要更新)

  • 3.當提示用戶進行版本升級時,如果用戶點擊了“更新”,系統將自動從服務器上下載安裝包并進行自動升級,如果點擊取消將進入程序主界面。

效果圖如下:

更新

下載1
下載2
安裝

下面介紹一下代碼的實現:

  • 1.獲取應用的當前版本號,我是封裝了一個工具類來獲取
 // 獲取本版本號,是否更新
        int vision = Tools.getVersion(this);

獲取當前版本號工具類:


public class Tools {
    /**
     * 檢查是否存在SDCard
     *
     * @return
     */
    public static boolean hasSdcard() {
        String state = Environment.getExternalStorageState();
        if (state.equals(Environment.MEDIA_MOUNTED)) {
            return true;
        } else {
            return false;
        }
    }

    /**
     * 2 * 獲取版本號 3 * @return 當前應用的版本號 4
     */
    public static int getVersion(Context context) {
        try {
            PackageManager manager = context.getPackageManager();
            PackageInfo info = manager.getPackageInfo(context.getPackageName(),
                    0);
            String version = info.versionName;
            int versioncode = info.versionCode;
            return versioncode;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return 0;
    }
   
}
  • 2.獲取服務器版本號,是否要更新(此處就是簡單的網絡請求拿到需要的數據即可,我是寫了固定值)
 // 獲取更新版本號
    private void getVersion(final int vision) {
//         {"data":{"content":"其他bug修復。","id":"2","api_key":"android",
//         // "version":"2.1"},"msg":"獲取成功","status":1}
        String data = "";
        //網絡請求獲取當前版本號和下載鏈接
        //實際操作是從服務器獲取
        //demo寫死了

        String newversion = "2.1";//更新新的版本號
        String content = "\n" +
                "就不告訴你我們更新了什么-。-\n" +
                "\n" +
                "----------萬能的分割線-----------\n" +
                "\n" +
                "(ㄒoㄒ) 被老板打了一頓,還是來告訴你吧:\n" +

                "1.下架商品誤買了?恩。。。我搞了點小動作就不會出現了\n" +
                "2.側邊欄、彈框優化 —— 這個你自己去探索吧,總得留點懸念嘛-。-\n";//更新內容
        String url = "http://openbox.mobilem.360.cn/index/d/sid/3429345";//安裝包下載地址

        double newversioncode = Double
                .parseDouble(newversion);
        int cc = (int) (newversioncode);

        System.out.println(newversion + "v" + vision + ",,"
                + cc);
        if (cc != vision) {
            if (vision < cc) {
                System.out.println(newversion + "v"
                        + vision);
                // 版本號不同
                ShowDialog(vision, newversion, content, url);
            }
        }
    }
  • 3.接下來就是下載文件了
    (1) 顯示下載
    此處用的是自定義按鈕:
 /**
     * 升級系統
     *
     * @param content
     * @param url
     */
    private void ShowDialog(int vision, String newversion, String content,
                            final String url) {
        final MaterialDialog dialog = new MaterialDialog(this);
        dialog.content(content).btnText("取消", "更新").title("版本更新 ")
                .titleTextSize(15f).show();
        dialog.setCanceledOnTouchOutside(false);
        dialog.setOnBtnClickL(new OnBtnClickL() {// left btn click listener
            @Override
            public void onBtnClick() {
                dialog.dismiss();
            }
        }, new OnBtnClickL() {// right btn click listener

            @Override
            public void onBtnClick() {
                dialog.dismiss();
                // pBar = new ProgressDialog(MainActivity.this,
                // R.style.dialog);
                pBar = new CommonProgressDialog(MainActivity.this);
                pBar.setCanceledOnTouchOutside(false);
                pBar.setTitle("正在下載");
                pBar.setCustomTitle(LayoutInflater.from(
                        MainActivity.this).inflate(
                        R.layout.title_dialog, null));
                pBar.setMessage("正在下載");
                pBar.setIndeterminate(true);
                pBar.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
                pBar.setCancelable(true);
                // downFile(URLData.DOWNLOAD_URL);
                final DownloadTask downloadTask = new DownloadTask(
                        MainActivity.this);
                downloadTask.execute(url);
                pBar.setOnCancelListener(new DialogInterface.OnCancelListener() {
                    @Override
                    public void onCancel(DialogInterface dialog) {
                        downloadTask.cancel(true);
                    }
                });
            }
        });
    }

原生的按鈕:

 new android.app.AlertDialog.Builder(this)
                .setTitle("版本更新")
                .setMessage(content)
                .setPositiveButton("更新", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        dialog.dismiss();
                        pBar = new CommonProgressDialog(MainActivity.this);
                        pBar.setCanceledOnTouchOutside(false);
                        pBar.setTitle("正在下載");
                        pBar.setCustomTitle(LayoutInflater.from(
                                MainActivity.this).inflate(
                                R.layout.title_dialog, null));
                        pBar.setMessage("正在下載");
                        pBar.setIndeterminate(true);
                        pBar.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
                        pBar.setCancelable(true);
                        // downFile(URLData.DOWNLOAD_URL);
                        final DownloadTask downloadTask = new DownloadTask(
                                MainActivity.this);
                        downloadTask.execute(url);
                        pBar.setOnCancelListener(new DialogInterface.OnCancelListener() {
                            @Override
                            public void onCancel(DialogInterface dialog) {
                                downloadTask.cancel(true);
                            }
                        });
                    }
                })
                .setNegativeButton("取消", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        dialog.dismiss();
                    }
                })
                .show();

(2)通過異步任務實現進度++


    /**
     * 下載應用
     *
     * @author Administrator
     */
    class DownloadTask extends AsyncTask<String, Integer, String> {

        private Context context;
        private PowerManager.WakeLock mWakeLock;

        public DownloadTask(Context context) {
            this.context = context;
        }

        @Override
        protected String doInBackground(String... sUrl) {
            InputStream input = null;
            OutputStream output = null;
            HttpURLConnection connection = null;
            File file = null;
            try {
                URL url = new URL(sUrl[0]);
                connection = (HttpURLConnection) url.openConnection();
                connection.connect();
                // expect HTTP 200 OK, so we don't mistakenly save error
                // report
                // instead of the file
                if (connection.getResponseCode() != HttpURLConnection.HTTP_OK) {
                    return "Server returned HTTP "
                            + connection.getResponseCode() + " "
                            + connection.getResponseMessage();
                }
                // this will be useful to display download percentage
                // might be -1: server did not report the length
                int fileLength = connection.getContentLength();
                if (Environment.getExternalStorageState().equals(
                        Environment.MEDIA_MOUNTED)) {
                    file = new File(Environment.getExternalStorageDirectory(),
                            DOWNLOAD_NAME);

                    if (!file.exists()) {
                        // 判斷父文件夾是否存在
                        if (!file.getParentFile().exists()) {
                            file.getParentFile().mkdirs();
                        }
                    }

                } else {
                    Toast.makeText(MainActivity.this, "sd卡未掛載",
                            Toast.LENGTH_LONG).show();
                }
                input = connection.getInputStream();
                output = new FileOutputStream(file);
                byte data[] = new byte[4096];
                long total = 0;
                int count;
                while ((count = input.read(data)) != -1) {
                    // allow canceling with back button
                    if (isCancelled()) {
                        input.close();
                        return null;
                    }
                    total += count;
                    // publishing the progress....
                    if (fileLength > 0) // only if total length is known
                        publishProgress((int) (total * 100 / fileLength));
                    output.write(data, 0, count);

                }
            } catch (Exception e) {
                System.out.println(e.toString());
                return e.toString();

            } finally {
                try {
                    if (output != null)
                        output.close();
                    if (input != null)
                        input.close();
                } catch (IOException ignored) {
                }
                if (connection != null)
                    connection.disconnect();
            }
            return null;
        }

        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            // take CPU lock to prevent CPU from going off if the user
            // presses the power button during download
            PowerManager pm = (PowerManager) context
                    .getSystemService(Context.POWER_SERVICE);
            mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
                    getClass().getName());
            mWakeLock.acquire();
            pBar.show();
        }

        @Override
        protected void onProgressUpdate(Integer... progress) {
            super.onProgressUpdate(progress);
            // if we get here, length is known, now set indeterminate to false
            pBar.setIndeterminate(false);
            pBar.setMax(100);
            pBar.setProgress(progress[0]);
        }

        @Override
        protected void onPostExecute(String result) {
            mWakeLock.release();
            pBar.dismiss();
            if (result != null) {

//                // 申請多個權限。大神的界面
//                AndPermission.with(MainActivity.this)
//                        .requestCode(REQUEST_CODE_PERMISSION_OTHER)
//                        .permission(Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.READ_EXTERNAL_STORAGE)
//                        // rationale作用是:用戶拒絕一次權限,再次申請時先征求用戶同意,再打開授權對話框,避免用戶勾選不再提示。
//                        .rationale(new RationaleListener() {
//                                       @Override
//                                       public void showRequestPermissionRationale(int requestCode, Rationale rationale) {
//                                           // 這里的對話框可以自定義,只要調用rationale.resume()就可以繼續申請。
//                                           AndPermission.rationaleDialog(MainActivity.this, rationale).show();
//                                       }
//                                   }
//                        )
//                        .send();
                // 申請多個權限。
                AndPermission.with(MainActivity.this)
                        .requestCode(REQUEST_CODE_PERMISSION_SD)
                        .permission(Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.READ_EXTERNAL_STORAGE)
                        // rationale作用是:用戶拒絕一次權限,再次申請時先征求用戶同意,再打開授權對話框,避免用戶勾選不再提示。
                        .rationale(rationaleListener
                        )
                        .send();


                Toast.makeText(context, "您未打開SD卡權限" + result, Toast.LENGTH_LONG).show();
            } else {
                // Toast.makeText(context, "File downloaded",
                // Toast.LENGTH_SHORT)
                // .show();
                update();
            }

        }
    }

此處下載apk文件,需要獲取SD的讀寫權限(用的是嚴大的權限庫)
權限庫GitHub:https://github.com/yanzhenjie/AndPermission

  private static final int REQUEST_CODE_PERMISSION_SD = 101;

    private static final int REQUEST_CODE_SETTING = 300;
    private RationaleListener rationaleListener = new RationaleListener() {
        @Override
        public void showRequestPermissionRationale(int requestCode, final Rationale rationale) {
            // 這里使用自定義對話框,如果不想自定義,用AndPermission默認對話框:
            // AndPermission.rationaleDialog(Context, Rationale).show();

            // 自定義對話框。
            AlertDialog.build(MainActivity.this)
                    .setTitle(R.string.title_dialog)
                    .setMessage(R.string.message_permission_rationale)
                    .setPositiveButton(R.string.btn_dialog_yes_permission, new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {
                            dialog.cancel();
                            rationale.resume();
                        }
                    })

                    .setNegativeButton(R.string.btn_dialog_no_permission, new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {
                            dialog.cancel();
                            rationale.cancel();
                        }
                    })
                    .show();
        }
    };
    //----------------------------------SD權限----------------------------------//


    @PermissionYes(REQUEST_CODE_PERMISSION_SD)
    private void getMultiYes(List<String> grantedPermissions) {
        Toast.makeText(this, R.string.message_post_succeed, Toast.LENGTH_SHORT).show();
    }

    @PermissionNo(REQUEST_CODE_PERMISSION_SD)
    private void getMultiNo(List<String> deniedPermissions) {
        Toast.makeText(this, R.string.message_post_failed, Toast.LENGTH_SHORT).show();

        // 用戶否勾選了不再提示并且拒絕了權限,那么提示用戶到設置中授權。
        if (AndPermission.hasAlwaysDeniedPermission(this, deniedPermissions)) {
            AndPermission.defaultSettingDialog(this, REQUEST_CODE_SETTING)
                    .setTitle(R.string.title_dialog)
                    .setMessage(R.string.message_permission_failed)
                    .setPositiveButton(R.string.btn_dialog_yes_permission)
                    .setNegativeButton(R.string.btn_dialog_no_permission, null)
                    .show();

            // 更多自定dialog,請看上面。
        }
    }

    //----------------------------------權限回調處理----------------------------------//

    @Override
    public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[]
            grantResults) {
        super.onRequestPermissionsResult(requestCode, permissions, grantResults);
        /**
         * 轉給AndPermission分析結果。
         *
         * @param object     要接受結果的Activity、Fragment。
         * @param requestCode  請求碼。
         * @param permissions  權限數組,一個或者多個。
         * @param grantResults 請求結果。
         */
        AndPermission.onRequestPermissionsResult(this, requestCode, permissions, grantResults);
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        switch (requestCode) {
            case REQUEST_CODE_SETTING: {
                Toast.makeText(this, R.string.message_setting_back, Toast.LENGTH_LONG).show();
                //設置成功,再次請求更新
                getVersion(Tools.getVersion(MainActivity.this));
                break;
            }
        }
    }

(3) 當apk文件下載完畢時,打開安裝

   private void update() {
        //安裝應用
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setDataAndType(Uri.fromFile(new File(Environment
                        .getExternalStorageDirectory(), DOWNLOAD_NAME)),
                "application/vnd.android.package-archive");
        startActivity(intent);
    }

Android 7.0 FileUriExposedException 的處理

發現問題

前幾天把手機系統升級到基于 Android 7.0,后來在升級調試一個應用時拋出如下異常信息:

android.os.FileUriExposedException: file:///storage/emulated/0/Android/data/com.skyrin.bingo/cache/app/app.apk exposed beyond app through Intent.getData()
at android.os.StrictMode.onFileUriExposed(StrictMode.java:1799)

at com.skyrin.bingo.update.AppUpdate.installApk(AppUpdate.java:295)

根據如上日志找到 AppUpdate 類下的 installApk 方法:

/**
 * 安裝apk
 */
public static void installApk(Context context,String apkPath) {
    if (TextUtils.isEmpty(apkPath)){
        Toast.makeText(context,"更新失??!未找到安裝包", Toast.LENGTH_SHORT).show();
        return;
    }

    File apkFile = new File(apkPath
            + apkCacheName);

    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    intent.setDataAndType(
            Uri.fromFile(apkFile),
            "application/vnd.android.package-archive");
    context.startActivity(intent); 
}

問題出在啟動安裝程序階段
由于沒升級 7.0 系統之前都沒有問題,于是就在 Android 官網查看了一下 Android 7.0 新特性,終于發現其中 “在應用間共享文件” 一欄明確指出了這個問題

解決問題

官方給出的解決方式是通過 FileProvider 來為所共享的文件 Uri 添加臨時權限,詳細請看這里

  • 在 <application> 標簽下添加 FileProvider 節點
<application
   ...>
   ...
    <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="com.skyrin.bingo.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths" />
    </provider>
   ...
</application>

android:authority 屬性指定要用于 FileProvider 生成的 content URI 的 URI 權限,這里推薦使用 包名.fileprovider 以確保其唯一性。

<provider><meta-data> 子元素指向一個 XML 文件,用于指定要共享的目錄。

  • res/xml 目錄下創建文件 file_paths.xml 內容如下:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-cache-path path="app/" name="apk"/>
</paths>

<external-cache-path> 表示應用程序內部存儲目錄下的 cache/ 目錄,完整路徑為 Android/data/com.xxx.xxx/cache/。

path 屬性用于指定子目錄。

name 屬性告訴 FileProvider 為 Android/data/com.xxx.xxx/cache/app/ 創建一個名為 apk 的路徑字段。

想要通過 FileProvider 為文件生成 content URI 只能在此處指定目錄,以上示例就表示我將要共享 Android/data/com.xxx.xxx/cache/app/ 這個目錄,除此之外還可以共享其它目錄,對應的路徑如下:

標簽 路徑
<files-path name="name" path="path" /> Context.getFilesDir()
<cache-path name="name" path="path" /> getCacheDir()
<external-path name="name" path="path" /> Environment.getExternalStorageDirectory()
<external-files-path name="name" path="path" /> Context.getExternalFilesDir()
<external-cache-path name="name" path="path" /> Context.getExternalCacheDir()
  • 完成以步驟后,我們修改出問題的代碼如下:
/**
 * 安裝apk
 */
public static void installApk(Context context,String apkPath) {
    if (TextUtils.isEmpty(apkPath)){
        Toast.makeText(context,"更新失?。∥凑业桨惭b包", Toast.LENGTH_SHORT).show();
        return;
    }

    File apkFile = new File(apkPath
            + apkCacheName);

    Intent intent = new Intent(Intent.ACTION_VIEW);
    //Android 7.0 系統共享文件需要通過 FileProvider 添加臨時權限,否則系統會拋出 FileUriExposedException .
    if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.N){
        intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        Uri contentUri = FileProvider.getUriForFile(context,"com.skyrin.bingo.fileprovider",apkFile);
        intent.setDataAndType(contentUri,"application/vnd.android.package-archive");
    }else {
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.setDataAndType(
                Uri.fromFile(apkFile),
                "application/vnd.android.package-archive");
    }
    context.startActivity(intent);
}
...
//調用,apkPath 入參就是 xml 中共享的路徑
String apkPath = context.getExternalCacheDir().getPath()+ File.separator+"app"+File.separator;
AppUpdate.installApk(context,apkPath );

結語

除了上面這個問題,在 Android 7.0 之前開發的分享圖文、瀏覽編輯本地圖片、共享互傳文件等功能如果沒有使用 FileProvider 來生成 URI 的話,在 Android 7.0 上就必須做這種適配了,所以平時建議大家多關注 Android 新的 API ,盡早替換已被官方廢棄的 API ,實際上 FileProvider 在 API Level 22 已經添加了。

源碼

此demo已經上傳到GitHub,如有需要自行下載
GitHub:
https://github.com/huangshuyuan/UpdateDemo/

我的博客:
http://blog.csdn.net/Imshuyuan/article/details/62886741

我的簡書:
http://www.lxweimin.com/p/2ab0459a9c3c

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 173,523評論 25 708
  • Spring Cloud為開發人員提供了快速構建分布式系統中一些常見模式的工具(例如配置管理,服務發現,斷路器,智...
    卡卡羅2017閱讀 134,991評論 19 139
  • ¥開啟¥ 【iAPP實現進入界面執行逐一顯】 〖2017-08-25 15:22:14〗 《//首先開一個線程,因...
    小菜c閱讀 6,550評論 0 17
  • 是這樣一個中午: 無風、悶 太陽躲在云彩里面 一群白鴿飛過頭頂 四周靜謐 我睜不開眼 思緒紊亂 情緒平穩 我磨蹭到...
    鸉一閱讀 87評論 0 0
  • 2017.09.26號,淅淅瀝瀝的小雨下了一天,天天越來越冷了。最近真的忙的不行了,所以每天去托輔接孩子的時候...
    愛孩子閱讀 252評論 0 0