提问者:小点点

安装下载的apk文件时,通过Intent.getData()错误暴露在应用程序之外


我已经从服务器下载了apk文件,现在正在安装,但它给了我一个错误:通过Intent暴露在应用程序之外。getData()

我的代码是

Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);


        intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() +
                "/download/" + "in.sample.myapp.apk")), "application/vnd.android.package-archive");

我已经搜索了错误,找到了一些但无法解决的问题。建议使用FileProvider。我这样做只是为了查看日志

Log.d("NewPath", "NewPathName is: " +(FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider",outputFile)));

可能会有帮助。

请提供帮助和建议。


共2个答案

匿名用户

您的代码

Intent intent = new Intent(Intent.ACTION_VIEW);
File file = new File(Environment.getExternalStorageDirectory() + "/FolderName/" + "yourFile.apk");
Uri data = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID +".provider",file);
intent.setDataAndType(data,"application/vnd.android.package-archive");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.startActivity(intent);

文件路径。xml

<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="external_files" path="."/>
</paths>

显示

<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/filepaths"/>
    </provider>
</application>

匿名用户

使用FileProvider,以下是示例代码:

    Intent intent = new Intent(Intent.ACTION_VIEW);
    Uri data = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider" ,file);
    intent.setDataAndType(data, "/*");
    intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    context.startActivity(intent);

此外,您还需要在应用程序标记内的清单文件中包括FileProvider,请执行以下操作:

    <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>

还要在资源目录中创建一个xml文件夹,并创建一个文件provider\u路径。xml

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

    <external-path name="PATH here" path=""/>
</paths>