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

Commit dbb0b00a authored by Michael Groover's avatar Michael Groover
Browse files

Add required flag to registerReceiver call in GsmCdmaPhone

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_EXPORTED
flag to the receiver in GsmCdmaPhone since this broadcast is protected
by a privileged|role permission and is expected from the Dialer.

Bug: 161145287
Test: Build
Change-Id: I6d8fa18d062411823b4e4a2b157e429ee01e8ad2
parent 58a18b4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -475,7 +475,7 @@ public class GsmCdmaPhone extends Phone {
        filter.addAction(TelecomManager.ACTION_CURRENT_TTY_MODE_CHANGED);
        filter.addAction(TelecomManager.ACTION_TTY_PREFERRED_MODE_CHANGED);
        mContext.registerReceiver(mBroadcastReceiver, filter,
                android.Manifest.permission.MODIFY_PHONE_STATE, null);
                android.Manifest.permission.MODIFY_PHONE_STATE, null, Context.RECEIVER_EXPORTED);

        mCDM = new CarrierKeyDownloadManager(this);
        mCIM = new CarrierInfoManager();