我是靠谱客的博主 漂亮鸭子,这篇文章主要介绍Android版本更新下载apk文件到sd卡并自动安装,现在分享给大家,希望可以做个参考。

版本更新,需要注意的是android7.0和8.0的安装问题

android8.0以上得需要安装未知来源应用的权限

复制代码
1
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>

android7.0

1.android7.0需要在清单文件注册

复制代码
1
2
3
4
5
6
7
8
9
10
<provider android:name="android.support.v4.content.FileProvider" android:authorities="com.jetair.cuair.fileprovider" android:exported="false" android:grantUriPermissions="true"> <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" /> </provider>

2.在res文件下新建xml文件夹,编写file_paths:

复制代码
1
2
3
4
5
6
7
<?xml version="1.0" encoding="utf-8"?> <paths> <external-path name="downloadApk" path="cuair" /> </paths>

下载安装apk的代码:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
private void downLoadApk(final String downURL, final String appName){ final ProgressDialog pd = new ProgressDialog(this); //必须一直下载完,不可取消 pd.setCancelable(false); pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); pd.setMessage("正在下载安装包"); // pd.setTitle("版本更新"); pd.show(); Thread t = new Thread(){ @Override public void run() { try { File file = downloadFile(downURL, appName, pd); sleep(1000); // 结束掉进度条对话框 pd.dismiss(); if (file!=null){ installApk(file); } else { Toast.makeText(BrowserActivity.this, "更新包无法下载", Toast.LENGTH_LONG).show(); } } catch (Exception e) { pd.dismiss(); } } }; t.start(); } private File downloadFile(String path,String appName ,ProgressDialog pd) throws Exception { // 如果相等的话表示当前的sdcard挂载在手机上并且是可用的 if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) { URL url = new URL(path); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setConnectTimeout(5000); // 获取到文件的大小 pd.setMax(conn.getContentLength()); InputStream is = conn.getInputStream(); String fileName = Environment.getExternalStorageDirectory()+ "/cuair/" + appName+".apk"; File file = new File(fileName); // 目录不存在创建目录 if (!file.getParentFile().exists()) { file.getParentFile().mkdirs(); } FileOutputStream fos = new FileOutputStream(file); BufferedInputStream bis = new BufferedInputStream(is); byte[] buffer = new byte[1024]; int len; int total = 0; while ((len = bis.read(buffer)) != -1) { fos.write(buffer, 0, len); total += len; // 获取当前下载量 pd.setProgress(total); } fos.close(); bis.close(); is.close(); return file; } else { return null; } } /** * 安装apk */ private void installApk(File file) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { Log.d("installApk", "版本大于 N ,开始使用 fileProvider 进行安装"); intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); Uri contentUri = FileProvider.getUriForFile(this, "com.jetair.cuair.fileprovider", file); intent.setDataAndType(contentUri, "application/vnd.android.package-archive"); } else { Log.d("installApk", "正常进行安装"); intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive"); } startActivity(intent); }

 

最后

以上就是漂亮鸭子最近收集整理的关于Android版本更新下载apk文件到sd卡并自动安装的全部内容,更多相关Android版本更新下载apk文件到sd卡并自动安装内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(92)

评论列表共有 0 条评论

立即
投稿
返回
顶部