Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 632bdf34 authored by Michael Groover's avatar Michael Groover
Browse files

Add required flag to registerReceiver call in HapClientService

Android T adds support to allow a runtime receiver to be registered as
not exported, but to ensure apps can take advantage of this, calls to
registerReceiver must specify a flag indicating whether the receiver
should be exported for apps targeting T+ that are registering for
non-system broadcasts. This commit adds the RECEIVER_NOT_EXPORTED
flag to the receiver in HapClientService since this broadcast is
only sent by the local app.

Bug: 161145287
Test: Build
Ignore-AOSP-First: Affected receiver is not in AOSP
Change-Id: I6f224313e7818d2d3923ea8c5deacb4d8300b875
parent 667b0196
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ public class HapClientService extends ProfileService {
        filter = new IntentFilter();
        filter.addAction(BluetoothHapClient.ACTION_HAP_CONNECTION_STATE_CHANGED);
        mConnectionStateChangedReceiver = new ConnectionStateChangedReceiver();
        registerReceiver(mConnectionStateChangedReceiver, filter);
        registerReceiver(mConnectionStateChangedReceiver, filter, Context.RECEIVER_NOT_EXPORTED);

        // Mark service as started
        setHapClient(this);