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

Commit 2f172d22 authored by timhypeng's avatar timhypeng Committed by tim peng
Browse files

Define strings for output switcher dialog in SystemUI

-SystemUI requires to launch Bluetooth pairing setting
-Volume panel requires to launch SystemUI dialog

Bug: 155822415
Test: build pass
Merged-In: Ibb39b29aa383aab1df3e168b4f91ad1a40bf7682
Change-Id: Ibb39b29aa383aab1df3e168b4f91ad1a40bf7682
(cherry picked from commit 7d0e0840)
parent 7e04788d
Loading
Loading
Loading
Loading
+23 −1
Original line number Diff line number Diff line
@@ -60,8 +60,30 @@ public class MediaOutputSliceConstants {
            "com.android.settings.panel.action.MEDIA_OUTPUT_GROUP";

    /**
     * An string extra specifying a media package name.
     * A string extra specifying a media package name.
     */
    public static final String EXTRA_PACKAGE_NAME =
            "com.android.settings.panel.extra.PACKAGE_NAME";

    /**
     * An intent action to launch media output dialog.
     */
    public static final String ACTION_LAUNCH_MEDIA_OUTPUT_DIALOG =
            "com.android.systemui.action.LAUNCH_MEDIA_OUTPUT_DIALOG";

    /**
     * Settings package name.
     */
    public static final String SETTINGS_PACKAGE_NAME = "com.android.settings";

    /**
     * An intent action to launch Bluetooth paring page.
     */
    public static final String ACTION_LAUNCH_BLUETOOTH_PAIRING =
            "com.android.settings.action.LAUNCH_BLUETOOTH_PAIRING";

    /**
     * SystemUi package name.
     */
    public static final String SYSTEMUI_PACKAGE_NAME = "com.android.systemui";
}