为啥 FileProvider 不能与广播一起使用?
Posted
技术标签:
【中文标题】为啥 FileProvider 不能与广播一起使用?【英文标题】:Why FileProvider not working with Broadcast?为什么 FileProvider 不能与广播一起使用? 【发布时间】:2019-06-21 01:23:33 【问题描述】:我使用FileProvider生成一个uri,然后我想将它传递给另一个应用程序中的BroadcastReceiver,但我只得到"Permission Denial: opening provider"
的异常,我该如何解决?
有两个app:Sender & Receiver,然后Sender想分享一个文件给Receiver,但是Receiver不需要UI,它在后台处理文件,所以我用的是Broadcast而不是Activity要做到这一点。但我只得到"Permission Denial"
发件人
显现<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.sender"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_path_config"/>
</provider>
文件路径配置.xml
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path name="external" path="."/>
</paths>
发送广播
var intent = Intent().apply
action = "com.action"
component = ComponentName(
"com.receiver",
"com.receiver.MyReceiver"
)
intent.data = FileProvider.getUriForFile(
this,
"com.sender",
File("/storage/emulated/0/Cmd/zxz")
)
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
intent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION)
grantUriPermission("com.receiver", intent.data, Intent.FLAG_GRANT_READ_URI_PERMISSION or Intent.FLAG_GRANT_WRITE_URI_PERMISSION)
sendBroadcast(intent)
接收器
显现
<receiver
android:name=".MyReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.action"/>
<data
android:mimeType="*/*"
android:scheme="content"/>
</intent-filter>
</receiver>
我的接收器
override fun onReceive(context: Context, intent: Intent)
intent.data?.apply
val inputStream = context.contentResolver.openInputStream(this)
Log.i(TAG, "onReceive: $inputStream")
inputStream?.close()
我尝试了很多次,但只得到Caused by: java.lang.SecurityException: Permission Denial: opening provider androidx.core.content.FileProvider from ProcessRecord
然后崩溃。
但是当我使用活动而不是广播时,它工作正常。
【问题讨论】:
你能解决这个问题吗? @AbhishekSharma 在 BroadcastReceiver 的情况下,addFlags 不会向接收方授予所需的权限。我在这里分享了一个解决方案link 【参考方案1】:FileProvider 文档提到权限的生命周期与接收活动或服务的生命周期绑定。它没有说明广播接收器。所以我想他们不能在没有得到这个 SecurityException 的情况下管理这样的意图。
【讨论】:
以上是关于为啥 FileProvider 不能与广播一起使用?的主要内容,如果未能解决你的问题,请参考以下文章
为啥 NSFileManager 不能与 UIDocumentBrowserViewController 一起使用?
为啥 TransactionScope 不能与 Sqlite 一起使用?
为啥 overScrollBy() 和 onOverScrolled() 不能与 RecyclerView 一起使用