gpt4 book ai didi

android - 使用 FileProvider 时找不到处理 Intent 的 Activity

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:10 25 4
gpt4 key购买 nike

在我的应用程序中,我有一个自定义的自动下载和安装 APK,它是这样工作的

  // auto register for the complete download
activity.registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));



// Download the file through DownloadManager
String destination = Environment.getExternalStorageDirectory() + "/";
String fileName = "myfile.apk";
destination += fileName;
final Uri uri = Uri.parse("file://" + destination);
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(apkUrl));
request.setDescription("description");
request.setTitle("title");
request.setDestinationUri(uri);
final DownloadManager manager = (DownloadManager) activity.getSystemService(Context.DOWNLOAD_SERVICE);
final long downloadId = manager.enqueue(request);

onComplete = new BroadcastReceiver() {
public void onReceive(Context ctxt, Intent intent) {

Intent install = new Intent(Intent.ACTION_VIEW);
// BEFORE working doing this
//install.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
//install.setDataAndType(uri,
// manager.getMimeTypeForDownloadedFile(downloadId));

// Using file provider it doesnt work
Uri apkUri = FileProvider.getUriForFile(AutoUpdate.this,
"com.myapp", file);
install.setDataAndType(apkUri,manager.getMimeTypeForDownloadedFile(downloadId));
activity.startActivity(install);
activity.unregisterReceiver(this);

}
};

Android list :

<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.myapp"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>

Provider_path(抱歉,由于某些原因,我们删除了路径标签)

external-path name="myfolder" path="."/>

当文件下载完成时调用 onComplete 但 activiy 没有启动:

No Activity found to handle Intent { act=android.intent.action.VIEW dat=content://com.myapp/myfolder/myfile.apk typ=application/vnd.android.package-archive flg=0x4000000 }

当使用普通文件时://它确实有效

使用文件提供程序时我是否遗漏了什么? Activity 是否因为找不到文件而没有启动?我需要额外的许可吗? (目前我有互联网,在外部存储上读写)

最佳答案

包安装程序仅支持从 Android 7.0 开始的 content 方案。在此之前——尽管有相反的文档——包安装程序只支持 file 方案。

您需要根据您是否在 Android 7.0+ 上运行,在您的 Intent 上设置不同的 Uri,例如通过在 Build 上分支.VERSION.SDK_INT.

关于android - 使用 FileProvider 时找不到处理 Intent 的 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39332842/

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