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

Commit 97661735 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "STATSD_STARTED broadcast include background"

parents 4c06596f 81784083
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -783,7 +783,9 @@ public class StatsCompanionService extends IStatsCompanionService.Stub {
        enforceCallingPermission();
        if (DEBUG) Slog.d(TAG, "learned that statsdReady");
        sayHiToStatsd(); // tell statsd that we're ready too and link to it
        mContext.sendBroadcastAsUser(new Intent(StatsManager.ACTION_STATSD_STARTED),
        mContext.sendBroadcastAsUser(
                new Intent(StatsManager.ACTION_STATSD_STARTED)
                        .addFlags(Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND),
                UserHandle.SYSTEM,
                android.Manifest.permission.DUMP);
    }