Android實現APP在線下載更新

更新改進說明

本項目進行了比較大的改進。主要改進之處:
1、將以前的Library發佈到Jcenter,更方便集成

dependencies {
    compile 'com.teprinciple:updateapputils:1.1'
}

2、新增更新判斷方式以及apk下載方式
3、達到一行代碼更新app
例如:

 UpdateAppUtils.from(this)
                .serverVersionCode(2)  //服務器versionCode
                .serverVersionName("2.0") //服務器versionName
                .apkPath(apkPath) //最新apk下載地址
                .update();

文章地址:《UpdateAppUtils一行代碼實現app在線更新》

前言

項目地址:https://github.com/teprinciple/UpdateAppDemo
現在的android應用app會隔一段時間發佈一個新的版本,當你打開某個app,如果有最新的版本,會提醒你是否下載更新。本文利用android自帶的下載管理器DownloadManager進行下載最新版本的apk,下載完成後自動跳轉安裝。效果如下:



第一步、檢查版本並判斷是否需要更新

通過獲取當前app版本號與服務器上的版本號進行對比,如果本地的版本號低於服務器版本號,則彈出提示框:發現新版本,是否下載更新。

/**
 * Created by Teprinciple on 2016/11/15.
 */
public class DownloadAppUtils {
    private static final String TAG = DownloadAppUtils.class.getSimpleName();
    public static long downloadUpdateApkId = -1;//下載更新Apk 下載任務對應的Id
    public static String downloadUpdateApkFilePath;//下載更新Apk 文件路徑

    /**
     * 通過瀏覽器下載APK包
     * @param context
     * @param url
     */
    public static void downloadForWebView(Context context, String url) {
        Uri uri = Uri.parse(url);
        Intent intent = new Intent(Intent.ACTION_VIEW, uri);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(intent);
    }


    /**
     * 下載更新apk包
     * 權限:1,<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
     * @param context
     * @param url
     */
    public static void downloadForAutoInstall(Context context, String url, String fileName, String title) {
        //LogUtil.e("App 下載 url="+url+",fileName="+fileName+",title="+title);
        if (TextUtils.isEmpty(url)) {
            return;
        }
        try {
            Uri uri = Uri.parse(url);
            DownloadManager downloadManager = (DownloadManager) context
                    .getSystemService(Context.DOWNLOAD_SERVICE);
            DownloadManager.Request request = new DownloadManager.Request(uri);
            //在通知欄中顯示
            request.setVisibleInDownloadsUi(true);
            request.setTitle(title);
            String filePath = null;
            if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {//外部存儲卡
                filePath = Environment.getExternalStorageDirectory().getAbsolutePath();

            } else {
                T.showShort(context, R.string.download_sdcard_error);
                return;
            }
            downloadUpdateApkFilePath = filePath + File.separator + fileName;
            // 若存在,則刪除
            deleteFile(downloadUpdateApkFilePath);
            Uri fileUri = Uri.parse("file://" + downloadUpdateApkFilePath);
            request.setDestinationUri(fileUri);
            downloadUpdateApkId = downloadManager.enqueue(request);
        } catch (Exception e) {
            e.printStackTrace();
            downloadForWebView(context, url);
        }
    }


    private static boolean deleteFile(String fileStr) {
        File file = new File(fileStr);
        return file.delete();
    }
}



注意添加權限:

<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />

第三步、下載完成後跳轉安裝

通過廣播接收者,接收到下載完成後發出的廣播,跳轉到系統的安裝界面,進行安裝。

/**
 * Created by Teprinciple on 2016/11/15.
 */
public class UpdateAppReceiver extends BroadcastReceiver {
    public UpdateAppReceiver() {
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        // 處理下載完成
        Cursor c=null;
        try {
            if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(intent.getAction())) {
                if (DownloadAppUtils.downloadUpdateApkId >= 0) {
                    long downloadId = DownloadAppUtils.downloadUpdateApkId;
                    DownloadManager.Query query = new DownloadManager.Query();
                    query.setFilterById(downloadId);
                    DownloadManager downloadManager = (DownloadManager) context
                            .getSystemService(Context.DOWNLOAD_SERVICE);
                    c = downloadManager.query(query);
                    if (c.moveToFirst()) {
                        int status = c.getInt(c
                                .getColumnIndex(DownloadManager.COLUMN_STATUS));
                        if (status == DownloadManager.STATUS_FAILED) {
                            downloadManager.remove(downloadId);

                        } else if (status == DownloadManager.STATUS_SUCCESSFUL) {
                            if (DownloadAppUtils.downloadUpdateApkFilePath != null) {
                                Intent i = new Intent(Intent.ACTION_VIEW);
                                i.setDataAndType(
                                        Uri.parse("file://"
                                                + DownloadAppUtils.downloadUpdateApkFilePath),
                                        "application/vnd.android.package-archive");
                                i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                                context.startActivity(i);
                            }
                        }
                    }
                }
            }/* else if (DownloadManager.ACTION_NOTIFICATION_CLICKED.equals(intent.getAction())) {//點擊通知取消下載
                DownloadManager downloadManager = (DownloadManager) context
                        .getSystemService(Context.DOWNLOAD_SERVICE);
                long[] ids = intent.getLongArrayExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS);
                //點擊通知欄取消下載
                downloadManager.remove(ids);
            }*/

        } catch (Exception e) {
            e.printStackTrace();
        }finally {
            if (c != null) {
                c.close();
            }
        }
    }
}

注意需要在AndroidMainfest.xml中註冊receiver:
<receiver android:name=".updateapp.UpdateAppReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
                <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"/>
            </intent-filter>
</receiver>


** 通過上面三步就可以快速實現APP的在線更新 。**
項目地址:https://github.com/teprinciple/UpdateAppDemo



作者:Teprinciple
鏈接:http://www.jianshu.com/p/c089e222f820
來源:簡書
著作權歸作者所有。商業轉載請聯繫作者獲得授權,非商業轉載請註明出處。
發佈了41 篇原創文章 · 獲贊 72 · 訪問量 12萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章