我使用FileProvider生成了一个uri,然后我想将其传递给另一个应用程序中的BroadcastReceiver,但是我只收到.setThumbnail(member.user.createdAt)
的异常,该如何解决?
有两个应用程序:Sender和Receiver,然后Sender想与Receiver共享文件,但是 Receiver不需要UI,它在后台处理文件,所以我使用Broadcast而不是Activity要做到这一点。但是我只会得到"Permission Denial: opening provider"
"Permission Denial"
file_path_config.xml
<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>
sendBroadcast
<?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()
}
}
然后崩溃了。
但是当我使用“活动”而不是“广播”时,效果很好。
答案 0 :(得分:0)
FileProvider文档提到权限的有效期与接收活动或服务的有效期绑定。关于广播接收器,它什么也没说。因此,我想如果不获取此SecurityException,他们将无法管理此类意图。