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

Commit 78a05de8 authored by Christopher Tate's avatar Christopher Tate Committed by android-build-merger
Browse files

Merge "Don\'t try to launch broadcast receivers during boot" into lmp-mr1-dev

automerge: 14c33f6a

* commit '14c33f6a':
  Don't try to launch broadcast receivers during boot
parents 76e9d180 14c33f6a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -175,6 +175,7 @@ public class SecureCameraLaunchManager {
                public void run() {
                    Intent intent = new Intent();
                    intent.setAction(CLOSE_CAMERA_ACTION_NAME);
                    intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
                    mContext.sendBroadcast(intent);
                }
            });