Android系统7.0以上遇到exposed beyond app through ClipData.Item.getUri

版权声明:本文为博主原创文章,转载请注明出处!http://blog.csdn.net/francisbingo https://blog.csdn.net/FrancisBingo/article/details/78248118

Android7.0调用相机时出现新的错误:

android.os.FileUriExposedException:file:///storage/emulated/0/xxx exposed beyond app throughClipData.Item.getUri()

android.os.FileUriExposedException:file:///storage/emulated/0/Download/appName-2.3.0.apk exposed beyond appthrough Intent.getData()


解决方法

1、在AndroidManifest.xml中添加如下代码
<provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="app的包名.fileProvider"
    android:grantUriPermissions="true"
    android:exported="false">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_paths" />
</provider>

注意:
authorities:app的包名.fileProvider
grantUriPermissions:必须是true,表示授予 URI 临时访问权限
exported:必须是false
resource:中的@xml/file_paths是我们接下来要添加的文件

2、在res目录下新建一个xml文件夹,并且新建一个file_paths的xml文件(如下图)



3、打开file_paths.xml文件添加如下内容
<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path path="Android/data/app的包名/" name="files_root" />
    <external-path path="." name="external_storage_root" />

path:需要临时授权访问的路径(.代表所有路径)
name:就是你给这个访问路径起个名字


4、修改代码适配Android N
Intent intent = new Intent(Intent.ACTION_VIEW);
//判断是否是AndroidN以及更高的版本
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    Uri contentUri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".fileProvider", apkFile);
    intent.setDataAndType(contentUri, "application/vnd.android.package-archive");
} else {
    intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}
startActivity(intent);
微博分享遇到以下错误:

问题file:///storage/emulated/0/photo.jpegexposed beyond app through ClipData.Item.getUri

解决方法:

在Application.onCreate加入如下代码

       StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();

       StrictMode.setVmPolicy(builder.build());

       builder.detectFileUriExposure();

从Android 7.0开始,一个应用提供自身文件给其它应用使用时,如果给出一个file://格式的URI的话,应用会抛出FileUriExposedException。这是由于谷歌认为目标app可能不具有文件权限,会造成潜在的问题。所以让这一行为快速失败。

因此以上两种方法可以解决问题。


猜你喜欢

转载自blog.csdn.net/FrancisBingo/article/details/78248118