Specify broadcast receiver export flags

Really only useful once we target Android 14, but doesn't hurt to do it now.
This commit is contained in:
arkon
2023-10-07 10:03:45 -04:00
parent 6462472d16
commit e47f4cc177
2 changed files with 3 additions and 2 deletions
@@ -264,7 +264,7 @@ internal class ExtensionInstaller(private val context: Context) {
isRegistered = true
val filter = IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE)
context.registerReceiver(this, filter)
ContextCompat.registerReceiver(context, this, filter, ContextCompat.RECEIVER_EXPORTED)
}
/**