Android7.0系统使用Intent跳转到APK安装页

报错  android.os.FileUriExposedException: 

原因

Android N对访问文件权限收回,按照Android N的要求,若要在应用间共享文件,您应发送一项 content://URI,并授予 URI 临时访问权限。 
而进行此授权的最简单方式是使用 FileProvider类。

解决方法

1.在manifest中注册FileProvider

<provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="${applicationId}.provider"
    android:exported="false"
    android:grantUriPermissions="true">
    
</provider>

 

2、指定可用的文件路径
在项目的res目录下,创建xml文件夹,并新建一个file_paths.xml文件。通过这个文件来指定文件路径:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <files-path name="tangdada" path="download/" />
    <external-path name="tangdada" path="download/" />
</paths>

有多种指定路径,在<paths>标签内应至少包含一种,或者多种。
a、表示应用程序内部存储区中的文件/子目录中的文件
<files-path name="name" path="image" />
等同于Context.getFileDir() : /data/data/com.xxx.app/files/image

b、表示应用程序内部存储区缓存子目录中的文件
<cache-path name="name" path="image" />
等同于Context.getCacheDir() : /data/data/com.xxx.app/cache/image

c、表示外部存储区根目录中的文件
<external-path name="name" path="image" />
等同于Environment.getExternalStorageDirectory() : /storage/emulated/image

d、表示应用程序外部存储区根目录中的文件
<external-files-path name="name" path="image" />
等同于Context.getExternalFilesDir(String) / Context.getExternalFilesDir(null) : /storage/emulated/0/Android/data/com.xxx.app/files/image

e、表示应用程序外部缓存区根目录中的文件
<external-cache-path name="name" path="image" />
等同于Context.getExternalCacheDir() : /storage/emulated/0/Android/data/com.xxx.app/cache/image

 

3、引用指定的路径
在刚才Androidmanifest.xml中声明的provider进行关联:

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

 

所以最终安装apk的方法可以这么写了:

  File apkfile = new File(mSavePath, mPackageNameString);
   if (!apkfile.exists()) {
      return;
   }
   Intent i = new Intent(Intent.ACTION_VIEW);
   if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { // 7.0+以上版本
      Uri apkUri = getUriForFile(mContext, mContext.getApplicationContext().getPackageName() + ".provider", apkfile); //与manifest中定义的provider中的authorities="com.xinchuang.buynow.fileprovider"保持一致
      i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
      i.setDataAndType(apkUri, "application/vnd.android.package-archive");
      i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
   } else {
      i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      i.setDataAndType(Uri.parse("file://" + apkfile.toString()),
            "application/vnd.android.package-archive");
   }
   mContext.startActivity(i);
}

 

在网上找了好多方法  最后参考stackoverflow里面的才最终解决

附上stackoverflow链接

 

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值