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

Commit e53c884a authored by Michael Groover's avatar Michael Groover Committed by Android (Google) Code Review
Browse files

Merge "Add unaudited exported flag to exposed runtime receivers"

parents 1cc2f202 6d63e6b2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -130,7 +130,8 @@ public class TestPackageInstaller {
        IntentSender getIntentSender(int sessionId) {
            String action = BROADCAST_ACTION + "." + sessionId;
            IntentFilter filter = new IntentFilter(action);
            mContext.registerReceiver(this, filter);
            mContext.registerReceiver(this, filter,
                    Context.RECEIVER_EXPORTED_UNAUDITED);

            Intent intent = new Intent(action);
            PendingIntent pending = PendingIntent.getBroadcast(mContext, sessionId, intent,