Android7.0 android.os.FileUriExposedException

导致该问题的只要原因是当buildsdk >=24时,调用Uri.fromFile时会报错,按照如下步骤即可解决:

1、在AndroidManifest.xml中添加如下代码


<provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="包名.fileProvider"
        android:grantUriPermissions="true"
        android:exported="false">
        <meta-data
             android:name="android.support.FILE_PROVIDER_PATHS"
             android:resource="@xml/file_paths" />
</provider>

2、在res目录下新建一个xml文件夹,并新建一个file_paths的xml文件

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path
        name="files_root"
        path="Android/data/包名/" />
    <external-path
        name="external_storage_root"
        path="." />
</paths>

3、修改隐式启动Intent的代码

public static void installApp(Context context, File file) {
        Intent intent = new Intent(Intent.ACTION_VIEW);
        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", file);
            intent.setDataAndType(contentUri, "application/vnd.android.package-archive");
        } else {
            intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        }
        context.startActivity(intent);
    }

猜你喜欢

转载自blog.csdn.net/w3812127/article/details/78434600