android.os.FileUriExposedException 解决方法

最近遇到个问题,Android7.0的机子调用Uri.fromFile

android.os.FileUriExposedException

google一番后找到了原因是因为项目buildsdk>=24时就会报这个错,stackOverFlower里给出的解决方法有两个:

方法 1

在AndroidManifest.xml里添加

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    ...
    <application
        ...
        <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/provider_paths"/>
        </provider>
    </application>
</manifest>

在res/xml创建provider_paths.xml文件,内容如下:

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

然后Uri.fromFile 改为

FileProvider.getUriForFile(context,getPackageName()+ ".provider", file);

方法 2

这个方法的作者说因为用了第一种方法,在某些机器上不起作用,但是他用第二种方法却有效;方法如下:
在appliacation的onCreate方法里添加:

StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
StrictMode.setVmPolicy(builder.build());
builder.detectFileUriExposure()

这两种方法我都试过,都管用

我的github: https://github.com/a1018875550,欢迎follow;

你可能感兴趣的:(android)