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

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

Merge "Revert "Receiving a broadcast message when home screen is ready.""

parents 74a797ef 518062a1
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -41,7 +41,6 @@ import android.view.animation.AnimationUtils;
import java.util.Objects;

public class FallbackHome extends Activity {
    public static final String HOME_IS_READY = "com.android.launcher3.HOME_IS_READY";
    private static final String TAG = "FallbackHome";
    private static final int PROGRESS_TIMEOUT = 2000;

@@ -100,9 +99,7 @@ public class FallbackHome extends Activity {
        }
        getWindow().getDecorView().setSystemUiVisibility(flags);

        IntentFilter iFilter = new IntentFilter();
        iFilter.addAction(HOME_IS_READY);
        registerReceiver(mReceiver, iFilter);
        registerReceiver(mReceiver, new IntentFilter(Intent.ACTION_USER_UNLOCKED));
        maybeFinish();
    }