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

Commit 0affadc4 authored by Lalit Maganti's avatar Lalit Maganti Committed by Gerrit Code Review
Browse files

Merge "fw: delay TracingServiceProxy until PHASE_THIRD_PARTY_APPS_CAN_START" into main

parents 52bd4f13 dc44cbbb
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -119,9 +119,14 @@ public class TracingServiceProxy extends SystemService {
    }

    @Override
    public void onStart() {
    public void onStart() {}

    @Override
    public void onBootPhase(int phase) {
        if (phase == SystemService.PHASE_THIRD_PARTY_APPS_CAN_START) {
            publishBinderService(TRACING_SERVICE_PROXY_BINDER_NAME, mTracingServiceProxy);
        }
    }

    private void notifyTraceur(boolean sessionStolen) {
        final Intent intent = new Intent();