gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 02:58:07 24 4
gpt4 key购买 nike

我已经从服务器下载了 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)));

可以帮助解决这个问题。

请帮助和建议。

最佳答案

你的代码

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>

关于android - 在安装下载的 apk 文件时通过 Intent.getData() 错误暴露在应用程序之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51942381/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com