Marking permission protected receiver exported.

All dynamically registered receivers will have to have an explicit flag for exported/not exported, and since this receiver is permission protected we can safely mark it as exported, the current default behavior.
Bug: 161145287
Test: no-op

Change-Id: Ia8b2179e486df29d2bd8014420573c938c6cc1ac
This commit is contained in:
Jacob Hobbie
2021-11-02 21:17:51 +00:00
parent 66cffd469f
commit 3a4946241c

View File

@@ -114,7 +114,8 @@ public abstract class EuiccOperationSidecar extends SidecarFragment {
mReceiver,
new IntentFilter(getReceiverAction()),
Manifest.permission.WRITE_EMBEDDED_SUBSCRIPTIONS,
null);
null,
Context.RECEIVER_EXPORTED);
}
@Override