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

Commit c64b0eee authored by Jaewan Kim's avatar Jaewan Kim
Browse files

PIP: Provide a way to show onboarding everytime

This is for development and debug purpose.
To use this,
$ adb shell 'setprop debug.tv.pip_force_onboarding true; stop; start'

Change-Id: I9755266f8de00b87ce3ad1efbe9c57261aaf38c7
parent 77dd59fc
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ import android.media.session.MediaSessionManager;
import android.os.Debug;
import android.os.Handler;
import android.os.RemoteException;
import android.os.SystemProperties;
import android.util.Log;

import com.android.systemui.Prefs;
@@ -51,7 +52,8 @@ import static com.android.systemui.Prefs.Key.TV_PICTURE_IN_PICTURE_ONBOARDING_SH
public class PipManager {
    private static final String TAG = "PipManager";
    private static final boolean DEBUG = false;
    private static final boolean DEBUG_FORCE_ONBOARDING = false;
    private static final boolean DEBUG_FORCE_ONBOARDING =
            SystemProperties.getBoolean("debug.tv.pip_force_onboarding", false);

    private static PipManager sPipManager;