首先在AndroidManifest.xml文件,activity同级节点注册provider:

<provider            android:name="android.support.v4.content.FileProvider"            android:authorities="${applicationId}.file_provider"            android:exported="false"            android:grantUriPermissions="true">            <meta-data                android:name="android.support.FILE_PROVIDER_PATHS"                android:resource="@xml/file_paths" />        provider>

将apk文件下载到此路径:

  String cachePath = (                        getExternalFilesDir("upgrade_apk") +                                File.separator +                                getPackageName() +                                ".apk");

在res目录xml文件夹下创建名为file_paths的文件:upgrade_apk代表上面保存路径的文件夹名称,可随意更改,相同即可。

<?xml version="1.0" encoding="utf-8"?><paths>    <external-files-path name="bga_upgrade_apk" path="upgrade_apk" />paths>

最后编写代码,区分不同Android系统版本号,安装apk(注意:【com.apkinstall.demo】要替换自己应用的包名)

   /**             * 安装 apk 文件             *             * @param apkFile             */            public void installApk(File apkFile) {                Intent installApkIntent = new Intent();                installApkIntent.setAction(Intent.ACTION_VIEW);                installApkIntent.addCategory(Intent.CATEGORY_DEFAULT);                installApkIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);                if (Build.VERSION.SDK_INT > Build.VERSION_CODES.M) {                    installApkIntent.setDataAndType(FileProvider.getUriForFile(getApplicationContext(), "com.apkinstall.demo.file_provider", apkFile), "application/vnd.android.package-archive");                    installApkIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);                } else {                    installApkIntent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");                }                if (getPackageManager().queryIntentActivities(installApkIntent, 0).size() > 0) {                    startActivity(installApkIntent);                }            }

更多相关文章

  1. Pycharm安装PyQt5的详细教程
  2. NPM 和webpack 的基础使用
  3. 【阿里云镜像】使用阿里巴巴DNS镜像源——DNS配置教程
  4. Android五种存储方式
  5. linux 下使用ndk-build编译android使用的c++静态库
  6. 在Android中创建启动界面 编辑
  7. 解决 Android(安卓)N 7.0 上 报错:android.os.FileUriExposedExce
  8. Android基础知识总结(转载)
  9. 【Android】21.3 动画

随机推荐

  1. Android一个app调起另一个app的方法,简单
  2. 新Android工程src和layout文件夹为空
  3. [流媒体]Android(安卓)实时视频采集—Med
  4. android开发
  5. Android导入项目后,左上角报错的解决方法
  6. Android平台版本大全(注意版本号首字母原
  7. 第四章 ListView 使用技巧
  8. 有EditText的activity和输入法的配合使用
  9. Windows下Android平台搭建_4
  10. android开机自启动app